Searched defs:b1 (Results 1 - 2 of 2) sorted by relevance

/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/index/
H A DTestPayloads.java379 void assertByteArrayEquals(byte[] b1, byte[] b2) { argument
380 if (b1.length != b2.length) {
381 fail("Byte arrays have different lengths: " + b1.length + ", " + b2.length);
384 for (int i = 0; i < b1.length; i++) {
385 if (b1[i] != b2[i]) {
386 fail("Byte arrays different at index " + i + ": " + b1[i] + ", " + b2[i]);
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/index/
H A DTestPayloads.java379 void assertByteArrayEquals(byte[] b1, byte[] b2) { argument
380 if (b1.length != b2.length) {
381 fail("Byte arrays have different lengths: " + b1.length + ", " + b2.length);
384 for (int i = 0; i < b1.length; i++) {
385 if (b1[i] != b2[i]) {
386 fail("Byte arrays different at index " + i + ": " + b1[i] + ", " + b2[i]);

Completed in 1628 milliseconds