From: Jonathan Gathman Date: Thu, 6 Dec 2018 14:55:27 +0000 (+0000) Subject: Merge "Fixed sonar issue in ListByPerm.java" X-Git-Tag: 2.1.9~95 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=343481da5dac494c0b063f0b5b0ddb865fa1f214;hp=dc4923a67f424149e35a77108f5b2ac3418fbaf3;p=aaf%2Fauthz.git Merge "Fixed sonar issue in ListByPerm.java" --- diff --git a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/role/ListByPerm.java b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/role/ListByPerm.java index 3431a0ea..feb1dec8 100644 --- a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/role/ListByPerm.java +++ b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/role/ListByPerm.java @@ -3,6 +3,7 @@ * 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. @@ -49,8 +50,8 @@ public class ListByPerm extends Cmd { } @Override - public int _exec(int _idx, final String ... args) throws CadiException, APIException, LocatorException { - int idx = _idx; + public int _exec(int idx0, final String ... args) throws CadiException, APIException, LocatorException { + int idx = idx0; final String type=args[idx]; final String instance=args[++idx]; final String action=args[++idx];