Clover Coverage Report - Kuali Spring Utilities 1.1.2-SNAPSHOT
Coverage timestamp: Fri Nov 4 2011 14:31:58 EST
../../../img/srcFileCovDistChart0.png 51% of files have more coverage
4   17   3   4
2   13   0.75   1
1     3  
1    
 
  MultipleCopyrightIgnores       Line # 5 4 0% 3 7 0% 0.0
 
No Tests
 
1    package org.springframework.beans;
2   
3    import java.io.File;
4   
 
5    public class MultipleCopyrightIgnores extends CommonIgnoresFilter {
6   
 
7  0 toggle @Override
8    public boolean accept(File file) {
9  0 String path = file.getAbsolutePath();
10   
11  0 if (path.endsWith(".xsd") && contains(path, "/impl/src/main/resources/schema/")) {
12  0 return false;
13    } else {
14  0 return super.accept(file);
15    }
16    }
17    }