Lock state implementation

This commit is contained in:
Anuken
2020-05-18 20:17:02 -04:00
parent a9ece49c0d
commit c3ad3a9823
6 changed files with 37 additions and 29 deletions

View File

@@ -143,7 +143,7 @@ public class SaveIO{
}
}
/** Loads from a deflated (!) input stream.*/
/** Loads from a deflated (!) input stream. */
public static void load(InputStream is, WorldContext context) throws SaveException{
try(CounterInputStream counter = new CounterInputStream(is); DataInputStream stream = new DataInputStream(counter)){
logic.reset();