- Timestamp:
- 04/29/13 10:03:45 (12 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/commands/CMDparseDirHTML.java
r1087 r1178 74 74 75 75 for (String filename : files) { 76 String source = absolutPath + "/"+ filename;76 String source = absolutPath + File.separator + filename; 77 77 Console.traceln(Level.INFO, "Processing file: " + source); 78 78 -
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/commands/CMDparseDirJFC.java
r1037 r1178 70 70 String absolutPath = folder.getAbsolutePath(); 71 71 for (String filename : folder.list()) { 72 String source = absolutPath + "/"+ filename;72 String source = absolutPath + File.separator + filename; 73 73 Console.traceln(Level.INFO, "Processing file: " + source); 74 74 -
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/commands/CMDparseDirOldJFC.java
r1037 r1178 70 70 String absolutPath = folder.getAbsolutePath(); 71 71 for (String filename : folder.list()) { 72 String source = absolutPath + "/"+ filename;72 String source = absolutPath + File.separator + filename; 73 73 Console.traceln(Level.INFO, "Processing file: " + source); 74 74
Note: See TracChangeset
for help on using the changeset viewer.