(String format, Object... args)
| 106 | } |
| 107 | |
| 108 | @Contract("_,_-> fail") |
| 109 | public static <T> T assertShouldNeverHappen(String format, Object... args) { |
| 110 | return throwAssert("Internal error: should never happen: %s", format(format, args)); |
| 111 | } |
| 112 | |
| 113 | @Contract("-> fail") |
| 114 | public static <T> T assertShouldNeverHappen() { |