HBASE-1776 Make rowcounter enum public

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@805510 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-08-18 17:42:09 +00:00
parent 1bc510afa3
commit 936d360e45
2 changed files with 3 additions and 2 deletions

View File

@ -17,6 +17,7 @@ Release 0.21.0 - Unreleased
MemStoreFlusher#checkStoreFileCount
HBASE-1758 Extract interface out of HTable (Vaibhav Puranik via Andrew
Purtell)
HBASE-1776 Make rowcounter enum public
OPTIMIZATIONS

View File

@ -48,7 +48,7 @@ public class RowCounter {
extends TableMapper<ImmutableBytesWritable, Result> {
/** Counter enumeration to count the actual rows. */
private static enum Counters { ROWS }
public static enum Counters { ROWS }
/**
* Maps the data.
@ -124,4 +124,4 @@ public class RowCounter {
Job job = createSubmittableJob(conf, otherArgs);
System.exit(job.waitForCompletion(true) ? 0 : 1);
}
}
}