(Object aString)
| 1514 | } |
| 1515 | |
| 1516 | public static boolean stringInvalid(Object aString) { |
| 1517 | return aString == null || aString.toString().isEmpty(); |
| 1518 | } |
| 1519 | |
| 1520 | public static byte side(ForgeDirection aDirection) { |
| 1521 | return (byte)(aDirection==null?SIDE_INVALID:aDirection.ordinal()); |
no test coverage detected