diff options
author | jitendra007 <jitendra.sharma1@huawei.com> | 2020-07-21 14:35:31 +0530 |
---|---|---|
committer | priyanka.akhade <priyanka.akhade@huawei.com> | 2020-08-04 09:44:38 +0530 |
commit | 9921b1751cde31721958d004935f2b7fc5e95513 (patch) | |
tree | e41a158075ba6f95af21fc9ef25425e0dca51851 /grpc/grpc-server/src/main | |
parent | fc9af3118881c83a0928e9a21135641808288f84 (diff) |
Code improvement for pending sonar issues
Issue-ID: CLI-270
Signed-off-by: jitendra007 <jitendra.sharma1@huawei.com>
Change-Id: Ie27d3ff077fa1ef4d13788849aa82d695f183eeb
Diffstat (limited to 'grpc/grpc-server/src/main')
-rw-r--r-- | grpc/grpc-server/src/main/java/org/open/infc/grpc/server/OpenInterfaceGrpcServer.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grpc/grpc-server/src/main/java/org/open/infc/grpc/server/OpenInterfaceGrpcServer.java b/grpc/grpc-server/src/main/java/org/open/infc/grpc/server/OpenInterfaceGrpcServer.java index a7c0b175..c2a61320 100644 --- a/grpc/grpc-server/src/main/java/org/open/infc/grpc/server/OpenInterfaceGrpcServer.java +++ b/grpc/grpc-server/src/main/java/org/open/infc/grpc/server/OpenInterfaceGrpcServer.java @@ -159,8 +159,8 @@ public class OpenInterfaceGrpcServer { //Set the profile to current one OnapCommandRegistrar.getRegistrar().setProfile( profile, - new ArrayList<String>(), - new ArrayList<String>()); + new ArrayList<>(), + new ArrayList<>()); //fill from profile Map<String, String> cache= OnapCommandRegistrar.getRegistrar().getParamCache(product); |