Compare commits
1 Commits
v0.1-alpha
...
master
Author | SHA1 | Date |
---|---|---|
luca0N! | ce4ef560e2 |
|
@ -155,9 +155,12 @@ public class Dual {
|
||||||
String line = lines[x];
|
String line = lines[x];
|
||||||
boolean keepLine = true;
|
boolean keepLine = true;
|
||||||
// Check if this line is a comment.
|
// Check if this line is a comment.
|
||||||
if (line.startsWith("#"))
|
if (line.startsWith("#")){
|
||||||
// Ignore this line.
|
// Ignore this line, but add it to the updatedLines list
|
||||||
|
// in order to avoid data loss.
|
||||||
|
updatedLines.add(line);
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
String[] contents = line.split("#");
|
String[] contents = line.split("#");
|
||||||
// Check if this line was auto-generated by this program.
|
// Check if this line was auto-generated by this program.
|
||||||
|
|
Loading…
Reference in New Issue