- Timestamp:
- 12/08/17 09:36:26 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/LogPreprocessor.java
r927 r2233 144 144 } 145 145 String absolutPath = folder.getAbsolutePath(); 146 for (String filename : folder.list()) { 147 String source = absolutPath + "/" + filename; 148 Console.traceln(Level.INFO, "Processing file: " + source); 149 processFile(source, targetFile); 150 } 146 147 String[] filenames = folder.list(); 148 if (filenames != null) { 149 for (String filename : filenames) { 150 String source = absolutPath + "/" + filename; 151 Console.traceln(Level.INFO, "Processing file: " + source); 152 processFile(source, targetFile); 153 } 154 } 151 155 152 156 if (sessionOpen) {
Note: See TracChangeset
for help on using the changeset viewer.