Un-protected IORunner

This commit is contained in:
Anuken
2020-11-05 09:16:54 -05:00
parent df7b8e78e9
commit 479cad3d0c

View File

@@ -156,7 +156,7 @@ public abstract class SaveFileReader{
public abstract void write(DataOutputStream stream) throws IOException;
protected interface IORunner<T>{
public interface IORunner<T>{
void accept(T stream) throws IOException;
}
}