Skip to content

Commit 9aa55d7

Browse files
IvanJanssenslaurentschoelens
authored andcommitted
Fix comparison in JAXBEqualsStrategy
1 parent 2b7c98b commit 9aa55d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

jaxb-plugins-parent/jaxb-plugins-runtime/src/main/java/org/jvnet/jaxb/lang/JAXBEqualsStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ protected boolean equalsInternal(ObjectLocator leftLocator,
5555
left.getName(), right.getName()) &&
5656
//
5757
equals(property(leftLocator, "value", left.getValue()),
58-
property(rightLocator, "name", right.getValue()),
58+
property(rightLocator, "value", right.getValue()),
5959
left.getValue(), right.getValue());
6060
}
6161

0 commit comments

Comments
 (0)