9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-31 12:56:35 +00:00

Fix compat error by continuing the throw from Java's fileReader class

This commit is contained in:
CocoTheOwner
2021-01-30 17:21:59 +01:00
parent 4fa8fff3db
commit feaf21c702
3 changed files with 8 additions and 14 deletions

View File

@@ -410,7 +410,7 @@ public class IO
try {
fr = new FileReader(f);
} catch (IOException e) {
throw new IOException(e);
throw e;
}
BufferedReader bu = new BufferedReader(fr);
String c = "";