Skip to content

Commit

Permalink
small fix for readonly support
Browse files Browse the repository at this point in the history
  • Loading branch information
hohwille committed Jun 23, 2024
1 parent 53292de commit a4a0679
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ public void setResolver(Function<Id<E>, E> resolver) {
public void copyValue(ReadableValue<Link<E>> other) {

Link<E> link = other.get();
if ((link != null) && link.isResolved()) {
if (link != null) {
link = Link.of(link.getId());
}
set(link);
Expand Down

0 comments on commit a4a0679

Please sign in to comment.