Removed Debug output
This commit is contained in:
parent
96820cff84
commit
89516870c9
3 changed files with 2 additions and 13 deletions
|
@ -31,12 +31,8 @@ public class BlocksHelper {
|
|||
public static final Direction[] HORIZONTAL = makeHorizontal();
|
||||
public static final Direction[] DIRECTIONS = Direction.values();
|
||||
|
||||
private static final ThreadLocal<MutableBlockPos> TL_POS = new ThreadLocal<>(){
|
||||
@Override
|
||||
protected MutableBlockPos initialValue() {
|
||||
return new MutableBlockPos();
|
||||
}
|
||||
};
|
||||
private static final ThreadLocal<MutableBlockPos> TL_POS = ThreadLocal.withInitial(() -> new MutableBlockPos());
|
||||
|
||||
protected static final BlockState AIR = Blocks.AIR.defaultBlockState();
|
||||
protected static final BlockState WATER = Blocks.WATER.defaultBlockState();
|
||||
|
||||
|
|
|
@ -372,7 +372,6 @@ public class ModUtil {
|
|||
private static void accept(Path file) {
|
||||
try {
|
||||
URI uri = URI.create("jar:" + file.toUri());
|
||||
System.out.println(uri);
|
||||
|
||||
FileSystem fs;
|
||||
try {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue