(File file)
| 39 | } |
| 40 | |
| 41 | static ClassReader createClassReader(File file) throws IOException { |
| 42 | final InputStream input = new BufferedInputStream(new FileInputStream(file), |
| 43 | (int) file.length()); |
| 44 | try { |
| 45 | return new ClassReader(input); |
| 46 | } finally { |
| 47 | input.close(); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | static ClassVisitor createCalledClassVisitor(Set<String> methods, Set<String> fields, |
| 52 | boolean publicIndexation) { |
no test coverage detected