(int i)
| 150 | private void runHooks(Pair<ByteBuffer ,ByteBuffer > storage) { |
| 151 | hooks.values().stream().forEach(x -> x.accept(storage.first)); |
| 152 | } |
| 153 | |
| 154 | @HiddenInAutocomplete |
| 155 | static public String pad(int i) { |
| 156 | String s = i + ""; |
| 157 | while (s.length() < 6) s = "0" + s; |
| 158 | return s; |
| 159 | } |
| 160 |
no test coverage detected