Fix ImmutableUnkeyedListNodeBuilder.valueEquals() 38/80338/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:29 +0000 (17:15 +0000)
commit25754bb0fdf91e8d48994f9c186e90f9f1901f5c
tree2dd5b2863697e9d13d8513366eceb2e7beaa5fe7
parentf5b00d2d0179ed7c7ed7e853fc81cbe5a1947921
Fix ImmutableUnkeyedListNodeBuilder.valueEquals()

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