mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-01-11 09:50:29 +00:00
173ea72001
OK, so let's get this out of the way, there's some actual changes mixed in here too. I'm really sorry: - Turtles can now not be renamed with unnamed item tags (previously it would clear the name, this seemed a little unideal). - commands.getBlock(s)Data will also include NBT. Now, onto the horror story which is these inspection changes: - Make a lot of methods static - Typo fixes - Make utility classes final + private constructor - Lots of reformatting (ifs -> ternary, invert control flow, etc...) - ??? - Profit! I'm so going to regret this - can pretty much guarantee this is going to break something.
27 lines
544 B
Java
27 lines
544 B
Java
/*
|
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
|
* Send enquiries to dratcliffe@gmail.com
|
|
*/
|
|
|
|
package dan200.computercraft.shared.util;
|
|
|
|
import java.io.Closeable;
|
|
import java.io.IOException;
|
|
|
|
public final class IoUtil
|
|
{
|
|
private IoUtil() {}
|
|
|
|
public static void closeQuietly( Closeable closeable )
|
|
{
|
|
try
|
|
{
|
|
closeable.close();
|
|
}
|
|
catch( IOException ignored )
|
|
{
|
|
}
|
|
}
|
|
}
|