Data migration tweak.
This is for compat with an old version (maybe one of the betas?) which was saving with a shorter ==== string to separate claims/subclaims.
This commit is contained in:
@@ -290,7 +290,7 @@ public class FlatFileDataStore extends DataStore
|
||||
|
||||
//skip any remaining extra lines, until the "===" string, indicating the end of this claim or subdivision
|
||||
line = inStream.readLine();
|
||||
while(line != null && !line.contains("=========="))
|
||||
while(line != null && !line.contains("==="))
|
||||
line = inStream.readLine();
|
||||
|
||||
//build a claim instance from those data
|
||||
|
||||
Reference in New Issue
Block a user