This commit is contained in:
ㄗㄠˋ ㄑㄧˊ 2020-03-11 13:35:37 +08:00 committed by GitHub
parent 39e1026400
commit dcee873b57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -438,11 +438,9 @@ public class WorldEditPlugin extends JavaPlugin { //implements TabCompleter
protected void createDefaultConfiguration(String name) {
File actual = new File(getDataFolder(), name);
if (!actual.exists()) {
try {
try (InputStream stream = getResource("defaults/" + name)) {
if (stream == null) throw new FileNotFoundException();
copyDefaultConfig(stream, actual, name);
}
try (InputStream stream = getResource("defaults/" + name)) {
if (stream == null) throw new FileNotFoundException();
copyDefaultConfig(stream, actual, name);
} catch (IOException e) {
getLogger().severe("Unable to read default configuration: " + name);
}