fix some more compilation issues

This commit is contained in:
Jesse Boyd
2019-07-22 19:05:14 +10:00
parent 55196cec6d
commit 4d8cf04be1
38 changed files with 241 additions and 855 deletions

View File

@ -61,7 +61,11 @@ public final class NBTOutputStream extends OutputStream implements Closeable, Da
}
// Don't delete
public NBTOutputStream(DataOutput os) throws IOException {
public NBTOutputStream(DataOutput os) {
this.os = os;
}
public NBTOutputStream(DataOutputStream os) {
this.os = os;
}