Compare commits

..

No commits in common. "master" and "v0.1-alpha" have entirely different histories.

1 changed files with 2 additions and 5 deletions

View File

@ -155,12 +155,9 @@ public class Dual {
String line = lines[x];
boolean keepLine = true;
// Check if this line is a comment.
if (line.startsWith("#")){
// Ignore this line, but add it to the updatedLines list
// in order to avoid data loss.
updatedLines.add(line);
if (line.startsWith("#"))
// Ignore this line.
continue;
}
String[] contents = line.split("#");
// Check if this line was auto-generated by this program.