diff options
author | varun gudisena <varuneshwar.gudisena@att.com> | 2019-01-22 18:55:40 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-22 18:55:40 +0000 |
commit | b2668789b9e7af9a40c234a4dcbbb7a14df97627 (patch) | |
tree | 279d61e6aa55e44e9fa4291c6329cab6f4554fbc /src/main/java/org/onap | |
parent | f633d09a8006467fb94f0fe9e44133f5c36434f0 (diff) | |
parent | fa24cf0508dcec6bea9cd8b69eb1eda977d058bb (diff) |
Merge "IssueFix-Replace type with diamonds"
Diffstat (limited to 'src/main/java/org/onap')
-rw-r--r-- | src/main/java/org/onap/dmaap/dbcapi/aaf/AafLurService.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/org/onap/dmaap/dbcapi/aaf/AafLurService.java b/src/main/java/org/onap/dmaap/dbcapi/aaf/AafLurService.java index 2ebf403..537c773 100644 --- a/src/main/java/org/onap/dmaap/dbcapi/aaf/AafLurService.java +++ b/src/main/java/org/onap/dmaap/dbcapi/aaf/AafLurService.java @@ -3,7 +3,7 @@ * org.onap.dmaap * ================================================================================ * 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. @@ -128,7 +128,7 @@ public class AafLurService extends BaseLoggingClass { return rc; } - List<Permission> perms = new ArrayList<Permission>(); + List<Permission> perms = new ArrayList<>(); aafLur.fishAll( principal, perms); String key = aafPerm.getKey(); for ( Permission prm: perms ) { |