Mass whitespace changes (Style Warnings)
[aaf/authz.git] / auth / auth-cass / src / main / java / org / onap / aaf / auth / dao / cass / NsType.java
index 59e18ae..e656a55 100644 (file)
@@ -46,8 +46,8 @@ public enum NsType {
          * @return
          */
         public static NsType fromType(int t) {
-            for(NsType nst : values()) {
-                if(t==nst.type) {
+            for (NsType nst : values()) {
+                if (t==nst.type) {
                     return nst;
                 }
             }
@@ -60,9 +60,9 @@ public enum NsType {
          * @return
          */
         public static NsType fromString(String s) {
-            if(s!=null) {
-                for(NsType nst : values()) {
-                    if(nst.name().equals(s)) {
+            if (s!=null) {
+                for (NsType nst : values()) {
+                    if (nst.name().equals(s)) {
                         return nst;
                     }
                 }