Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2025-01-11 15:41:08 +01:00
Remove exact refrence to imported class in FileUtils (Thanks @Konicai)
Dieser Commit ist enthalten in:
Ursprung
65e85eb853
Commit
26a778fd77
@ -234,7 +234,7 @@ public class FileUtils {
|
||||
*/
|
||||
public static Stream<String> readAllLines(Path path) {
|
||||
try {
|
||||
return new BufferedReader(new InputStreamReader(java.nio.file.Files.newInputStream(path))).lines();
|
||||
return new BufferedReader(new InputStreamReader(Files.newInputStream(path))).lines();
|
||||
} catch (IOException e) {
|
||||
throw new RuntimeException("Error while trying to read file!", e);
|
||||
}
|
||||
|
Laden…
x
In neuem Issue referenzieren
Einen Benutzer sperren