You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ja...@apache.org on 2019/06/28 11:32:05 UTC

[hbase] branch branch-2.0 updated: HBASE-22595 Changed suppressions to full qualified class name

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

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


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new 165148b  HBASE-22595 Changed suppressions to full qualified class name
165148b is described below

commit 165148b3cde8b047c9c238976089ae1a8740decd
Author: Jan Hentschel <ja...@ultratendency.com>
AuthorDate: Fri Jun 28 09:43:56 2019 +0200

    HBASE-22595 Changed suppressions to full qualified class name
    
    Signed-off-by: stack <st...@apache.org>
---
 hbase-checkstyle/src/main/resources/hbase/checkstyle-suppressions.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-checkstyle/src/main/resources/hbase/checkstyle-suppressions.xml b/hbase-checkstyle/src/main/resources/hbase/checkstyle-suppressions.xml
index ec80540..c080964 100644
--- a/hbase-checkstyle/src/main/resources/hbase/checkstyle-suppressions.xml
+++ b/hbase-checkstyle/src/main/resources/hbase/checkstyle-suppressions.xml
@@ -36,5 +36,5 @@
   <suppress checks="MagicNumberCheck" files=".*/src/test/.*\.java"/>
   <suppress checks="VisibilityModifier" files=".*/src/test/.*\.java"/>
   <suppress checks="InterfaceIsTypeCheck" files=".*/src/main/.*\.java"/>
-  <suppress checks="MethodLength" files="Branch1CoprocessorMethods.java"/>
+  <suppress checks="MethodLength" files="org.apache.hadoop.hbase.tool.coprocessor.Branch1CoprocessorMethods.java"/>
 </suppressions>