Code style cleanup for prov authz and beans
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / authz / impl / AuthzResource.java
index c248468..45c2286 100644 (file)
@@ -55,11 +55,11 @@ public class AuthzResource {
     AuthzResource(String requestUri) {\r
         if (requestUri != null) {\r
             for (ResourceType t : ResourceType.values()) {\r
-                Matcher m = t.getPattern().matcher(requestUri);\r
-                if (m.find(0)) {\r
+                Matcher match = t.getPattern().matcher(requestUri);\r
+                if (match.find(0)) {\r
                     this.type = t;\r
-                    if (m.group("id") != null) {\r
-                        this.id = m.group("id");\r
+                    if (match.group("id") != null) {\r
+                        this.id = match.group("id");\r
                     }\r
                     break;\r
                 }\r