Skip to content

Commit 32c482c

Browse files
committed
* Fix ref equality.
Relates to #35
1 parent d084abb commit 32c482c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

storm-core/src/main/java/st/orm/core/spi/AbstractRef.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public boolean equals(Object obj) {
3838
if (this == obj) {
3939
return true;
4040
}
41-
if (obj instanceof AbstractRef<?> l) {
41+
if (obj instanceof Ref<?> l) {
4242
return Objects.equals(type(), l.type())
4343
&& Objects.equals(id(), l.id());
4444
}

0 commit comments

Comments
 (0)