(ByteBuf buf)
| 90 | } |
| 91 | |
| 92 | public static byte[] byteBufToArray(ByteBuf buf) { |
| 93 | byte[] bytes = new byte[buf.capacity()]; |
| 94 | buf.getBytes(0, bytes); |
| 95 | return bytes; |
| 96 | } |
| 97 | |
| 98 | public static int abilityHash(String str) { |
| 99 | int v7 = 0; |
no outgoing calls
no test coverage detected