Revert "HBASE-18266 Create static empty byte array to save memory (Ben Epstein)"

Wrong JIRA number

This reverts commit 549fb1677b.
This commit is contained in:
Michael Stack 2017-07-03 19:50:55 -07:00
parent eacbdb061e
commit 3a0db474a2
1 changed files with 2 additions and 2 deletions

View File

@ -345,7 +345,7 @@ public class Put extends Mutation implements HeapSize, Comparable<Row> {
* existing KeyValue object in the family map. * existing KeyValue object in the family map.
*/ */
public boolean has(byte [] family, byte [] qualifier) { public boolean has(byte [] family, byte [] qualifier) {
return has(family, qualifier, this.ts, HConstants.EMPTY_BYTE_ARRAY, true, true); return has(family, qualifier, this.ts, new byte[0], true, true);
} }
/** /**
@ -360,7 +360,7 @@ public class Put extends Mutation implements HeapSize, Comparable<Row> {
* existing KeyValue object in the family map. * existing KeyValue object in the family map.
*/ */
public boolean has(byte [] family, byte [] qualifier, long ts) { public boolean has(byte [] family, byte [] qualifier, long ts) {
return has(family, qualifier, ts, HConstants.EMPTY_BYTE_ARRAY, false, true); return has(family, qualifier, ts, new byte[0], false, true);
} }
/** /**