Fix ImmutableUnkeyedListNodeBuilder.valueEquals() 36/80336/2
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 14 Feb 2019 16:40:47 +0000 (17:40 +0100)
committerRobert Varga <nite@hq.sk>
Thu, 14 Feb 2019 17:15:24 +0000 (17:15 +0000)
Returning an empty Set from getValue() means that if we ever
encountered two instances of this class in comparison, their values
would fail to compare, as valueEquals() expects a List.

Fix this by returning ImmutableList.of() and codify that in the
return value.

Change-Id: I4301f4161648ea391f2e0a1e712e3f87c6dca33c
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/builder/impl/ImmutableUnkeyedListNodeBuilder.java

index 331374f97636fc6ac9478889286a1e201192f498..8541716eda758159da0bf2d0b571f72220f66f27 100644 (file)
@@ -125,8 +125,8 @@ public class ImmutableUnkeyedListNodeBuilder implements CollectionNodeBuilder<Un
         }
 
         @Override
-        public Collection<UnkeyedListEntryNode> getValue() {
-            return Collections.emptySet();
+        public ImmutableList<UnkeyedListEntryNode> getValue() {
+            return ImmutableList.of();
         }
 
         @Override