Index: hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/RpcServerInterface.java =================================================================== --- hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/RpcServerInterface.java (revision 1582242) +++ hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/RpcServerInterface.java (working copy) @@ -34,13 +34,6 @@ import com.google.protobuf.Message; import com.google.protobuf.ServiceException; -/** - * RpcServer Interface. - * Start calls {@link #openServer()} and then {@link #startThreads()}. Prefer {@link #start()} - * and {@link #stop()}. Only use {@link #openServer()} and {@link #startThreads()} if in a - * situation where you could start getting requests though the server not up and fully - * initiaalized. - */ @InterfaceAudience.Private public interface RpcServerInterface { void start(); Index: hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterRpcServices.java =================================================================== --- hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterRpcServices.java (revision 1582242) +++ hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterRpcServices.java (working copy) @@ -711,7 +711,7 @@ /** * Get list of TableDescriptors for requested tables. - * @param controller Unused (set to null). + * @param c Unused (set to null). * @param req GetTableDescriptorsRequest that contains: * - tableNames: requested tables, or if empty, all are requested * @return GetTableDescriptorsResponse Index: hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java =================================================================== --- hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java (revision 1582242) +++ hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java (working copy) @@ -332,8 +332,7 @@ /** * The server name the Master sees us as. Its made from the hostname the * master passes us, port, and server startcode. Gets set after registration - * against Master. The hostname can differ from the hostname in {@link #isa} - * but usually doesn't if both servers resolve . + * against Master. */ protected ServerName serverName;