1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-04-05 11:16:24 +02:00

Remove empty lines from FlatFile - the plugin will not enable if these are present.

This commit is contained in:
GJ 2013-09-18 08:34:47 -04:00
parent 5a3f8ad15f
commit 446b6c107b

@ -577,6 +577,11 @@ public final class FlatfileDatabaseManager implements DatabaseManager {
HashSet<String> players = new HashSet<String>(); HashSet<String> players = new HashSet<String>();
while ((line = in.readLine()) != null) { while ((line = in.readLine()) != null) {
// Remove empty lines from the file
if (line.isEmpty()) {
continue;
}
// Length checks depend on last character being ':' // Length checks depend on last character being ':'
if (line.charAt(line.length() - 1) != ':') { if (line.charAt(line.length() - 1) != ':') {
line = line + ":"; line = line + ":";