Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
-
Reviewed
Description
public static boolean matchingRow(final Cell left, final byte[] buf) { if (buf == null) { return left.getQualifierLength() == 0; } return matchingRow(left, buf, 0, buf.length); }
The 'if' condition should check for left.getRowLength() == 0.