# | Line 96 | Line 96 | void OptionsParser::parse(){ | |
---|---|---|
96 | line = fileStream.readLine(); | |
97 | ||
98 | if(line.startsWith('"')){ // Only read when starting with quotes | |
99 | < | temp=Util::substring(line," \""); // We need to use more than space, because if paths contains spaces... |
99 | > | temp=line.split(" \""); // We need to use more than space, because if paths contains spaces... |
100 | patchFiles << temp[0].remove('"'); // remove the quotes, they are now not needed | |
101 | targetXmlFiles << temp[1].remove('"'); | |
102 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |