From f449c82af61f119510bcb744a331c90ad9538fa3 Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Thu, 10 Jan 2019 21:44:36 +0530 Subject: [PATCH] Sonar Fix: Grant.java Fixed sonar issues/code-smells across this file Issue-ID: AAF-713 Change-Id: I1eae70cac6ecbc3dc10e30396afa814be00c1ba8 Signed-off-by: Arundathi Patil --- auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/perm/Grant.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/perm/Grant.java b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/perm/Grant.java index dd45fb4b..ca958c20 100644 --- a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/perm/Grant.java +++ b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/perm/Grant.java @@ -3,6 +3,8 @@ * org.onap.aaf * =========================================================================== * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. + * + * Modifications Copyright (C) 2018 IBM. * =========================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -41,7 +43,7 @@ import aaf.v2_0.RolePermRequest; * */ public class Grant extends Cmd { - private final static String[] options = {"grant","ungrant","setTo"}; + private static final String[] options = {"grant","ungrant","setTo"}; public Grant(Perm parent) { super(parent,null, @@ -74,7 +76,8 @@ public class Grant extends Cmd { if (option != 2) { String[] roles = args[idx++].split(","); - String strA,strB; + String strA; + String strB; for (String role : roles) { rpr.setRole(role); if (option==0) { -- 2.16.6