Add checkstyle rule to prevent empty statements (;)
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / authorization / AppRoleLevel.java
index f08fc84a2ca8a842c961eb92a99e7bf2e7f73631..124b495147db61d99b53b24138bf47e5dda4083c 100644 (file)
@@ -43,13 +43,13 @@ public enum AppRoleLevel implements Serializable {
     public String toStringPretty() {
         return this.prettyLevel;
     }
-    
+
     public static AppRoleLevel fromString(String levelString) {
-       for (AppRoleLevel level : AppRoleLevel.values()) {
-               if (level.toString().equals(levelString)) {
-                       return level;
-               }
-       }
-       return null;                    
+        for (AppRoleLevel rolelevel : AppRoleLevel.values()) {
+                if (rolelevel.toString().equals(levelString)) {
+                        return rolelevel;
+                }
+        }
+        return null;
     }
-} 
+}