This is an automated email from the ASF dual-hosted git repository.

janh pushed a commit to branch branch-2.2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.2 by this push:
     new 68ce031  HBASE-22764 Fixed remaining Checkstyle issues in the 
hbase-rsgroup module
68ce031 is described below

commit 68ce031f59c3ce051b0b2e85975a29e50e7a8227
Author: Jan Hentschel <jan.hentsc...@ultratendency.com>
AuthorDate: Tue Jul 30 08:55:40 2019 +0200

    HBASE-22764 Fixed remaining Checkstyle issues in the hbase-rsgroup module
    
    Signed-off-by: stack <st...@apache.org>
---
 .../java/org/apache/hadoop/hbase/rsgroup/RSGroupAdminServer.java    | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git 
a/hbase-rsgroup/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupAdminServer.java
 
b/hbase-rsgroup/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupAdminServer.java
index d063c65..a8db39d 100644
--- 
a/hbase-rsgroup/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupAdminServer.java
+++ 
b/hbase-rsgroup/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupAdminServer.java
@@ -97,8 +97,7 @@ public class RSGroupAdminServer implements RSGroupAdmin {
    * Check passed name. Fail if nulls or if corresponding RSGroupInfo not 
found.
    * @return The RSGroupInfo named <code>name</code>
    */
-  private RSGroupInfo getAndCheckRSGroupInfo(String name)
-  throws IOException {
+  private RSGroupInfo getAndCheckRSGroupInfo(String name) throws IOException {
     if (StringUtils.isEmpty(name)) {
       throw new ConstraintException("RSGroup cannot be null.");
     }
@@ -271,8 +270,7 @@ public class RSGroupAdminServer implements RSGroupAdmin {
       value="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE",
       justification="Ignoring complaint because don't know what it is 
complaining about")
   @Override
-  public void moveServers(Set<Address> servers, String targetGroupName)
-  throws IOException {
+  public void moveServers(Set<Address> servers, String targetGroupName) throws 
IOException {
     if (servers == null) {
       throw new ConstraintException("The list of servers to move cannot be 
null.");
     }

Reply via email to