(File file)
| 224 | } |
| 225 | |
| 226 | static boolean isJarOrWarFile(File file) { |
| 227 | return file.getName().endsWith(".jar") || file.getName().endsWith(".war"); |
| 228 | } |
| 229 | |
| 230 | static void log(String msg) { |
| 231 | // ESCA-JAVA0266: |
no outgoing calls
no test coverage detected