Checkstyle fixes for prov eelf and utils
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / provisioning / utils / JSONUtilities.java
index 9abd5a8..f773599 100644 (file)
@@ -21,7 +21,6 @@
  * *\r
  ******************************************************************************/\r
 \r
-\r
 package org.onap.dmaap.datarouter.provisioning.utils;\r
 \r
 import com.att.eelf.configuration.EELFLogger;\r
@@ -43,24 +42,27 @@ public class JSONUtilities {
     private JSONUtilities(){\r
 \r
     }\r
+\r
     /**\r
      * Does the String <i>v</i> represent a valid Internet address (with or without a\r
      * mask length appended).\r
      *\r
-     * @param v the string to check\r
+     * @param str the string to check\r
      * @return true if valid, false otherwise\r
      */\r
-    public static boolean validIPAddrOrSubnet(String v) {\r
-        String[] pp = {v, ""};\r
-        if (v.indexOf('/') > 0)\r
-            pp = v.split("/");\r
+    public static boolean validIPAddrOrSubnet(String str) {\r
+        String[] pp = {str, ""};\r
+        if (str.indexOf('/') > 0) {\r
+            pp = str.split("/");\r
+        }\r
         try {\r
             InetAddress addr = InetAddress.getByName(pp[0]);\r
             if (pp[1].length() > 0) {\r
                 // check subnet mask\r
                 int mask = Integer.parseInt(pp[1]);\r
-                if (mask > (addr.getAddress().length * 8))\r
+                if (mask > (addr.getAddress().length * 8)) {\r
                     return false;\r
+                }\r
             }\r
             return true;\r
         } catch (UnknownHostException e) {\r