Bump Checkstyle 8.18 → 8.20 56/81356/7
authorStephen Kitt <skitt@redhat.com>
Wed, 3 Apr 2019 10:16:34 +0000 (12:16 +0200)
committerRobert Varga <nite@hq.sk>
Tue, 16 Jul 2019 15:21:40 +0000 (15:21 +0000)
Release notes:
https://checkstyle.org/releasenotes.html#Release_8.19
https://checkstyle.org/releasenotes.html#Release_8.20

Change-Id: I1861930af1af7dc83c8b29cedc7c39adc99e9fe6
Signed-off-by: Stephen Kitt <skitt@redhat.com>
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
features-test/src/main/java/org/opendaylight/odlparent/featuretest/ReflectionUtil.java
features-test/src/main/java/org/opendaylight/odlparent/featuretest/Util.java
features-test/src/test/java/org/opendaylight/odlparent/featuretest/ReflectionUtilTest.java
odlparent/pom.xml

index c8b13bd184c56f46a1025eac57518afdd2b2c6cb..dcfab05b9aa7deeecb2b3daa3110c858f64f7859 100644 (file)
@@ -22,7 +22,9 @@ import org.ops4j.pax.exam.TestProbeBuilder;
  */
 public final class ReflectionUtil {
 
-    private ReflectionUtil() {}
+    private ReflectionUtil() {
+
+    }
 
     public static void addAllClassesInSameAndSubPackageOfClass(TestProbeBuilder probe, Class<?> clazz) {
         addAllClassesInSameAndSubPackageOfPackage(probe, clazz.getPackage().getName());
index ef89138305ecd92d413602408fab2a199f34ff2d..9ec0c606ca0abd8f421e58a8916f25721d2d9520 100644 (file)
@@ -16,7 +16,9 @@ import org.junit.runner.Description;
 
 public final class Util {
 
-    private Util() {}
+    private Util() {
+
+    }
 
     /**
      * <p>Convert a Description to a Description that includes information about repoUrl, featureName, and
index 3ba035fbe40e23b73a63a879231ecce76700d483..61b4f58ad48d12431e677ddfb4f8bd48295a1fa4 100644 (file)
@@ -40,8 +40,11 @@ public class ReflectionUtilTest {
     @SuppressWarnings("unused")
     private final InnerNonStaticClass anoymousInnerClass = new InnerNonStaticClass() { };
 
-    private static class InnerStaticClass { }
+    private static class InnerStaticClass {
 
-    private class InnerNonStaticClass { }
+    }
+
+    private class InnerNonStaticClass {
 
+    }
 }
index ab8ff8d1692d8e69360ada9ed0ef0229f5f75f6b..119378c9d08f919e03af214cdaac6aaa5045ac50 100644 (file)
         <groupId>com.puppycrawl.tools</groupId>
         <artifactId>checkstyle</artifactId>
         <!-- This should match the plugin management on maven-checkstyle-plugin below -->
-        <version>8.18</version>
+        <version>8.20</version>
       </dependency>
 
       <!-- Testing Dependencies -->
               <groupId>com.puppycrawl.tools</groupId>
               <artifactId>checkstyle</artifactId>
               <!-- This should match the dependency management on com.puppycrawl.tools:checkstyle above -->
-              <version>8.18</version>
+              <version>8.20</version>
             </dependency>
             <dependency>
               <groupId>org.opendaylight.odlparent</groupId>