diff options
author | Jim Hahn <jrh3@att.com> | 2019-04-07 10:50:27 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2019-04-07 11:00:07 -0400 |
commit | bd6500bf91fcd7fc1e1bbcf438bd4a4e7ff4a3c0 (patch) | |
tree | 827201b26f2d2be8fc62075825c6e56d7cefd680 | |
parent | 82699a970d5f06c6dc1391d8beb0efe76bf84089 (diff) |
Clean up a couple of array lists
Initialized initial array size for empty list.
Add some junit tests to ensure that the returned lists are mutable.
Updated license in filter class.
Change-Id: I9c151eb50355a71f4d34ac46b41f8278cf913664
Issue-ID: POLICY-1542
Signed-off-by: Jim Hahn <jrh3@att.com>
3 files changed, 12 insertions, 1 deletions
diff --git a/models-base/src/main/java/org/onap/policy/models/base/PfObjectFilter.java b/models-base/src/main/java/org/onap/policy/models/base/PfObjectFilter.java index a7d8401f0..6ede4d9a3 100644 --- a/models-base/src/main/java/org/onap/policy/models/base/PfObjectFilter.java +++ b/models-base/src/main/java/org/onap/policy/models/base/PfObjectFilter.java @@ -1,6 +1,7 @@ /*- * ============LICENSE_START======================================================= * Copyright (C) 2019 Nordix Foundation. + * Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/models-base/src/main/java/org/onap/policy/models/base/PfUtils.java b/models-base/src/main/java/org/onap/policy/models/base/PfUtils.java index 7bdd9a5f4..c33271d78 100644 --- a/models-base/src/main/java/org/onap/policy/models/base/PfUtils.java +++ b/models-base/src/main/java/org/onap/policy/models/base/PfUtils.java @@ -73,7 +73,7 @@ public final class PfUtils { */ public static <T> List<T> mapList(List<T> source, Function<T, T> mapFunc) { if (source == null) { - return new ArrayList<>(); + return new ArrayList<>(0); } return source.stream().map(mapFunc).collect(Collectors.toList()); diff --git a/models-base/src/test/java/org/onap/policy/models/base/PfUtilsTest.java b/models-base/src/test/java/org/onap/policy/models/base/PfUtilsTest.java index 11ddf3132..339ee9d1b 100644 --- a/models-base/src/test/java/org/onap/policy/models/base/PfUtilsTest.java +++ b/models-base/src/test/java/org/onap/policy/models/base/PfUtilsTest.java @@ -52,9 +52,19 @@ public class PfUtilsTest { }); assertTrue(resultList.isEmpty()); + // verify that we can modify the empty list without throwing an exception + resultList.add("xyz"); + resultList.add("pdq"); + resultList.remove("xyz"); + + List<String> origList = Arrays.asList("abc", "def"); List<String> newList = PfUtils.mapList(origList, text -> text + "X"); assertEquals(Arrays.asList("abcX", "defX"), newList); + + // verify that we can modify the list without throwing an exception + newList.remove("abcX"); + newList.add("something else"); } } |