(ByteBuffer src)
| 116 | } |
| 117 | |
| 118 | static int isDirect(ByteBuffer src) { |
| 119 | return src.isDirect() ? 1 : 0; |
| 120 | } |
| 121 | |
| 122 | // Crazy pills factory: code compiled for JDK8 does not work on JRE9. |
| 123 | static void flipBuffer(Buffer buffer) { |
no outgoing calls
no test coverage detected