Sonar Fixes: Variable name changes
[aaf/authz.git] / auth / auth-core / src / main / java / org / onap / aaf / auth / rserv / Acceptor.java
index bf9f57e..52b86cc 100644 (file)
@@ -106,10 +106,14 @@ class Acceptor<TRANS extends Trans>  {
      * @return
      */
     protected boolean parse(HttpCode<TRANS, ?> code, String cntnt) {
-        byte bytes[] = cntnt.getBytes();
+        byte[] bytes = cntnt.getBytes();
 
-        int cis,cie=-1,cend;
-        int sis,sie,send;
+        int cis;
+        int cie=-1;
+        int cend;
+        int sis;
+        int sie;
+        int send;
         String name;
         ArrayList<String> props = new ArrayList<>();
         do {