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:
ryanhamshire 2015-01-11 12:15:51 -08:00
parent 8070da8dda
commit d15ac75e67

View File

@ -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 //skip any remaining extra lines, until the "===" string, indicating the end of this claim or subdivision
line = inStream.readLine(); line = inStream.readLine();
while(line != null && !line.contains("==========")) while(line != null && !line.contains("==="))
line = inStream.readLine(); line = inStream.readLine();
//build a claim instance from those data //build a claim instance from those data