Fix constructor visibility

This commit is contained in:
Dan Mulloy 2015-06-19 22:18:46 -04:00
parent 9fe5df3cfe
commit 84b502cba7

View File

@ -46,7 +46,7 @@ class TileEntityAccessor<T extends BlockState> {
private boolean writeDetected; private boolean writeDetected;
private boolean readDetected; private boolean readDetected;
public TileEntityAccessor() { private TileEntityAccessor() {
// Do nothing // Do nothing
} }