diff options
author | Thugutla Sailakshmi <tsaila10@in.ibm.com> | 2019-07-30 15:21:49 +0530 |
---|---|---|
committer | Thugutla Sailakshmi <tsaila10@in.ibm.com> | 2019-07-30 15:21:59 +0530 |
commit | b7b2dd80e70ba0031ba6b1ba301702de75918535 (patch) | |
tree | 33058d4d0e9c7c180f9f28184d5f5fb9db959a88 /aai-service/provider/src | |
parent | 8ab5893402544af46c8dfc67d907daa042e32c7e (diff) |
CCSDK-1557 -Replace the type specification in this constructor call with the diamond operator ("<>").
Replace the type specification in this constructor call with the diamond operator ("<>").
Issue-ID: CCSDK-1557
Change-Id: I714ddaf9d289a2a1ec82b8236b83103020fd8d25
Signed-off-by: Thugutla Sailakshmi <tsaila10@in.ibm.com>
Diffstat (limited to 'aai-service/provider/src')
-rwxr-xr-x | aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIDeclarations.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIDeclarations.java b/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIDeclarations.java index 2aa5c544..be67f335 100755 --- a/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIDeclarations.java +++ b/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIDeclarations.java @@ -5,7 +5,7 @@ * Copyright (C) 2017 AT&T Intellectual Property. All rights * reserved. * ================================================================================ - * Modifications Copyright (C) 2018 IBM. + * Modifications Copyright (C) 2019 IBM. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -1618,7 +1618,7 @@ public abstract class AAIDeclarations implements AAIClient { } Class resourceClass = instance.getClass(); - Set<String> metadataKeys = new TreeSet<String>(); + Set<String> metadataKeys = new TreeSet<>(); Set<String> set = params.keySet(); for(String attribute : set) { if(attribute.startsWith("metadata")) { |