Remove tabs accidentally committed as part of HBASE-882
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@693988 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
748b21e94a
commit
8aaf774c9d
|
@ -125,7 +125,7 @@ public class BatchUpdate implements Writable, Iterable<BatchOperation> {
|
||||||
* @return byte[] the cell value, returns null if the column does not exist.
|
* @return byte[] the cell value, returns null if the column does not exist.
|
||||||
*/
|
*/
|
||||||
public synchronized byte[] get(final String column) {
|
public synchronized byte[] get(final String column) {
|
||||||
return get(Bytes.toBytes(column));
|
return get(Bytes.toBytes(column));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -135,12 +135,12 @@ public class BatchUpdate implements Writable, Iterable<BatchOperation> {
|
||||||
* @return byte[] the cell value, returns null if the column does not exist.
|
* @return byte[] the cell value, returns null if the column does not exist.
|
||||||
*/
|
*/
|
||||||
public synchronized byte[] get(final byte[] column) {
|
public synchronized byte[] get(final byte[] column) {
|
||||||
for (BatchOperation operation: operations) {
|
for (BatchOperation operation: operations) {
|
||||||
if (Arrays.equals(column, operation.getColumn())) {
|
if (Arrays.equals(column, operation.getColumn())) {
|
||||||
return operation.getValue();
|
return operation.getValue();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -244,4 +244,4 @@ public class BatchUpdate implements Writable, Iterable<BatchOperation> {
|
||||||
op.write(out);
|
op.write(out);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue