Update data folder migration for spaces in plugin names. Fixes BUKKIT-5417

This change drops the previous plugin data folder migration based on the
plugin's file name, and adapts the migration to now instead consider
plugins that have spaces in their original name.

By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
Bukkit/Spigot
2014-02-15 12:05:20 -06:00
parent bc562b3f5b
commit 181110e567
2 changed files with 24 additions and 42 deletions

View File

@@ -1005,4 +1005,12 @@ public final class PluginDescriptionFile {
}
throw new InvalidDescriptionException(object + " is not properly structured.");
}
/**
* @deprecated Internal use
*/
@Deprecated
public String getRawName() {
return rawName;
}
}