(Item aItem, long aMeta)
| 199 | public static Block nullair(Block aBlock) {return aBlock != NB ? aBlock : null;} |
| 200 | |
| 201 | public static int toInt(Item aItem, long aMeta) {return aItem == null ? 0 : id_(aItem) | (((short)aMeta)<<16);} |
| 202 | public static int toInt(ItemStack aStack) {return aStack != null ? toInt(item_(aStack), meta_(aStack)) : 0;} |
| 203 | public static int toInt(ItemStack aStack, long aMeta) {return aStack != null ? toInt(item_(aStack), aMeta) : 0;} |
| 204 |
no test coverage detected