HBASE-17042 Remove 'public' keyword from MasterObserver interface (Stephen Yuan Jiang)

This commit is contained in:
Stephen Yuan Jiang 2016-11-07 17:50:58 -08:00
parent b99690ac6b
commit 874cf5128f
1 changed files with 3 additions and 3 deletions

View File

@ -465,7 +465,7 @@ public interface MasterObserver extends Coprocessor {
* @param ctx the environment to interact with the framework and master
* @throws IOException
*/
public void preAbortProcedure(
void preAbortProcedure(
ObserverContext<MasterCoprocessorEnvironment> ctx,
final ProcedureExecutor<MasterProcedureEnv> procEnv,
final long procId) throws IOException;
@ -474,7 +474,7 @@ public interface MasterObserver extends Coprocessor {
* Called after a abortProcedure request has been processed.
* @param ctx the environment to interact with the framework and master
*/
public void postAbortProcedure(ObserverContext<MasterCoprocessorEnvironment> ctx)
void postAbortProcedure(ObserverContext<MasterCoprocessorEnvironment> ctx)
throws IOException;
/**
@ -1032,7 +1032,7 @@ public interface MasterObserver extends Coprocessor {
* @param regionB second region to be merged
* @throws IOException if an error occurred on the coprocessor
*/
public void preDispatchMerge(final ObserverContext<MasterCoprocessorEnvironment> ctx,
void preDispatchMerge(final ObserverContext<MasterCoprocessorEnvironment> ctx,
HRegionInfo regionA, HRegionInfo regionB) throws IOException;
/**