mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-01 02:41:48 +00:00
Java optimization and formatting fixes (#4857)
This commit is contained in:
@@ -92,7 +92,7 @@ public final class RuntimeLoader<T> {
|
||||
if (hashIs == null) {
|
||||
throw new IOException(getLoadErrorMessage(ule));
|
||||
}
|
||||
try (Scanner scanner = new Scanner(hashIs, StandardCharsets.UTF_8.name())) {
|
||||
try (Scanner scanner = new Scanner(hashIs, StandardCharsets.UTF_8)) {
|
||||
String hash = scanner.nextLine();
|
||||
File jniLibrary = new File(m_extractionRoot, resName + "." + hash);
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user