You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2014/08/21 23:33:05 UTC

svn commit: r1619602 - /maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/RuleUtil.java

Author: rfscholte
Date: Thu Aug 21 21:33:05 2014
New Revision: 1619602

URL: http://svn.apache.org/r1619602
Log:
hide utility class constructor

Modified:
    maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/RuleUtil.java

Modified: maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/RuleUtil.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/RuleUtil.java?rev=1619602&r1=1619601&r2=1619602&view=diff
==============================================================================
--- maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/RuleUtil.java (original)
+++ maven/plugins/trunk/maven-checkstyle-plugin/src/main/java/org/apache/maven/plugin/checkstyle/RuleUtil.java Thu Aug 21 21:33:05 2014
@@ -27,8 +27,13 @@ import com.puppycrawl.tools.checkstyle.a
  * @author Hervé Boutemy
  * @since 2.13
  */
-public class RuleUtil
+public final class RuleUtil
 {
+    private RuleUtil()
+    {
+        // hide utility class constructor
+    }
+    
     private static final String CHECKSTYLE_PACKAGE = "com.puppycrawl.tools.checkstyle.checks";
 
     /**