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:
Michael Stack 2008-09-10 21:17:56 +00:00
parent 748b21e94a
commit 8aaf774c9d
1 changed files with 8 additions and 8 deletions

View File

@ -125,7 +125,7 @@ public class BatchUpdate implements Writable, Iterable<BatchOperation> {
* @return byte[] the cell value, returns null if the column does not exist.
*/
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.
*/
public synchronized byte[] get(final byte[] column) {
for (BatchOperation operation: operations) {
if (Arrays.equals(column, operation.getColumn())) {
return operation.getValue();
}
}
return null;
for (BatchOperation operation: operations) {
if (Arrays.equals(column, operation.getColumn())) {
return operation.getValue();
}
}
return null;
}
/**
@ -244,4 +244,4 @@ public class BatchUpdate implements Writable, Iterable<BatchOperation> {
op.write(out);
}
}
}
}