HBASE-5279 NPE in Master after upgrading to 0.92.0 -- REVERT OVERCOMMIT TO HREGION

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1245768 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2012-02-17 21:26:23 +00:00
parent 5994c50143
commit 0caad4616e
1 changed files with 0 additions and 3 deletions

View File

@ -4112,7 +4112,6 @@ public class HRegion implements HeapSize { // , Writable{
private List<KeyValue> get(Get get, boolean withCoprocessor)
throws IOException {
long now = EnvironmentEdgeManager.currentTimeMillis();
Scan scan = new Scan(get);
List<KeyValue> results = new ArrayList<KeyValue>();
@ -4123,8 +4122,6 @@ public class HRegion implements HeapSize { // , Writable{
}
}
Scan scan = new Scan(get);
RegionScanner scanner = null;
try {
scanner = getScanner(scan);