= corrected toString behavior

This commit is contained in:
Matthew Cech
2019-06-23 01:45:08 -07:00
parent 587914e451
commit da699281e9
3 changed files with 8 additions and 2 deletions
+6
View File
@@ -132,4 +132,10 @@ public abstract class BaseLocFile
for(LocInfo toStub : localizeList)
stringStore.addKeyValue(toStub.file, toStub.phrase, toStub.phrase);
}
// Converts this to a string
public String toString()
{
return stringStore.toString();
}
}