HBASE-11555 TableSnapshotRegionSplit should be public
This commit is contained in:
parent
214694467f
commit
69039f8620
|
@ -47,7 +47,7 @@ import java.util.List;
|
|||
@InterfaceStability.Evolving
|
||||
public class TableSnapshotInputFormat implements InputFormat<ImmutableBytesWritable, Result> {
|
||||
|
||||
static class TableSnapshotRegionSplit implements InputSplit {
|
||||
public static class TableSnapshotRegionSplit implements InputSplit {
|
||||
private TableSnapshotInputFormatImpl.InputSplit delegate;
|
||||
|
||||
// constructor for mapreduce framework / Writable
|
||||
|
|
|
@ -88,8 +88,7 @@ import com.google.common.annotations.VisibleForTesting;
|
|||
@InterfaceStability.Evolving
|
||||
public class TableSnapshotInputFormat extends InputFormat<ImmutableBytesWritable, Result> {
|
||||
|
||||
@VisibleForTesting
|
||||
static class TableSnapshotRegionSplit extends InputSplit implements Writable {
|
||||
public static class TableSnapshotRegionSplit extends InputSplit implements Writable {
|
||||
private TableSnapshotInputFormatImpl.InputSplit delegate;
|
||||
|
||||
// constructor for mapreduce framework / Writable
|
||||
|
|
Loading…
Reference in New Issue