Close en_us.hash stream (#1833)

This commit is contained in:
Extollite 2021-01-12 21:41:15 +01:00 committed by GitHub
parent dd0b4bafe8
commit c0a64659c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -142,8 +142,9 @@ public class LocaleUtils {
try {
File hashFile = GeyserConnector.getInstance().getBootstrap().getConfigFolder().resolve("locales/en_us.hash").toFile();
if (hashFile.exists()) {
BufferedReader br = new BufferedReader(new FileReader(hashFile));
curHash = br.readLine().trim();
try (BufferedReader br = new BufferedReader(new FileReader(hashFile))) {
curHash = br.readLine().trim();
}
}
} catch (IOException ignored) { }
targetHash = clientJarInfo.getSha1();