(byte[] left, byte[] right)
| 561 | } |
| 562 | |
| 563 | private boolean bytesEqual(byte[] left, byte[] right) { |
| 564 | return Arrays.equals(left, right); |
| 565 | } |
| 566 | |
| 567 | /** Marshaller for metadata values that are serialized into raw binary. */ |
| 568 | public interface BinaryMarshaller<T> { |
no test coverage detected