use try-with-resources

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

View File

@ -439,9 +439,10 @@ public class WorldEditPlugin extends JavaPlugin { //implements TabCompleter
File actual = new File(getDataFolder(), name);
if (!actual.exists()) {
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);
}