Changeset 24357
- Timestamp:
- 2011-08-01T15:29:43+12:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/gli/src/org/greenstone/gatherer/Gatherer.java
r24356 r24357 1419 1419 for(int i = 0; i < commands.length; i++) { 1420 1420 if (i>0) { 1421 // get rid of any quotes around parameters in file associations 1422 if(commands[i].startsWith("\"") || commands[i].startsWith("\'")) { 1423 commands[i] = commands[i].substring(1); 1424 } 1425 if(commands[i].endsWith("\"") || commands[i].endsWith("\'")) { 1426 commands[i] = commands[i].substring(0, commands[i].length()-1); 1427 } 1421 1428 whole_command.append(" "); 1422 1429 }
Note:
See TracChangeset
for help on using the changeset viewer.