(boolean condition, String message)
| 18455 | static int hashCode(Object obj) {return obj == null ? 0 : obj.hashCode(); } |
| 18456 | static int hashCode(boolean bool) {return bool ? 1 : 0; } |
| 18457 | static void assertTrue(boolean condition, String message) { |
| 18458 | if (!condition) throw new IllegalStateException(message); |
| 18459 | } |
| 18460 | static void assertTrue(boolean condition, IHelpSectionRenderer producer) { |
| 18461 | if (!condition) throw new IllegalStateException(producer.render(null)); |
| 18462 | } |