Added a check for when the old and new data folders are the same.

This commit is contained in:
sk89q 2011-04-03 23:05:25 -07:00
parent 4378464989
commit e6a51fb149

View File

@ -72,7 +72,9 @@ public final class JavaPluginLoader implements PluginLoader {
File oldDataFolder = getDataFolder(file); File oldDataFolder = getDataFolder(file);
// Found old data folder // Found old data folder
if (dataFolder.isDirectory() && oldDataFolder.isDirectory()) { if (dataFolder.equals(oldDataFolder)) {
// They are equal -- nothing needs to be done!
} else if (dataFolder.isDirectory() && oldDataFolder.isDirectory()) {
server.getLogger().log( Level.INFO, String.format( server.getLogger().log( Level.INFO, String.format(
"While loading %s (%s) found old-data folder: %s next to the new one: %s", "While loading %s (%s) found old-data folder: %s next to the new one: %s",
description.getName(), description.getName(),