Mass whitespace changes (Style Warnings)
[aaf/authz.git] / auth / auth-cass / src / main / java / org / onap / aaf / auth / dao / cass / NsSplit.java
index a64c0a9..2beeaf3 100644 (file)
@@ -28,10 +28,10 @@ public class NsSplit {
     
     public NsSplit(NsDAO.Data nsd, String child) {
         this.nsd = nsd;
-        if(child.startsWith(nsd.name)) {
+        if (child.startsWith(nsd.name)) {
             ns = nsd.name;
             int dot = ns.length();
-            if(dot<child.length() && child.charAt(dot)=='.') {
+            if (dot<child.length() && child.charAt(dot)=='.') {
                 name = child.substring(dot+1);
             } else {
                 name="";
@@ -48,7 +48,7 @@ public class NsSplit {
         this.nsd = new NsDAO.Data();
         nsd.name = ns;
         int dot = ns.lastIndexOf('.');
-        if(dot>=0) {
+        if (dot>=0) {
             nsd.parent = ns.substring(0, dot);
         } else {
             nsd.parent = ".";