(byte[] left, byte[] right)
| 115 | } |
| 116 | |
| 117 | public int compare(byte[] left, byte[] right) { |
| 118 | return compareTo(left, right); |
| 119 | } |
| 120 | |
| 121 | public int compare(byte[] b1, int s1, int l1, byte[] b2, int s2, int l2) { |
| 122 | return compareTo(b1, s1, l1, b2, s2, l2); |