Skip to content

Commit

Permalink
Metodekall isf aksess
Browse files Browse the repository at this point in the history
  • Loading branch information
jolarsen committed Jun 23, 2024
1 parent f7de89f commit 42563ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/no/nav/fpsak/nare/doc/RuleEdge.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
@JsonInclude(Include.NON_NULL)
public record RuleEdge(String source, String target, String role) {
public RuleEdge(RuleNode source, RuleNode target, String edgeRole) {
this(source.id, target.id, edgeRole);
this(source.id(), target.id(), edgeRole);
}
}

0 comments on commit 42563ed

Please sign in to comment.