Skip to content

Commit

Permalink
Merge pull request #529 from CDOT-CV/fix/duplicate-paths
Browse files Browse the repository at this point in the history
Duplicate Path Bug Fix
  • Loading branch information
dan-du-car authored Dec 27, 2023
2 parents f1a882a + aa3a707 commit 6a497f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
public class NodeSetXY extends Asn1Object {
private static final long serialVersionUID = 1L;

@JsonProperty("NodeXY")
private NodeXY[] NodeXY;


@JsonProperty("NodeXY")
public NodeXY[] getNodeXY() {
return NodeXY;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
public class Nodes extends Asn1Object {

private static final long serialVersionUID = 1L;
@JsonProperty("NodeLL")
private NodeLL[] nodeLL;

@JsonProperty("NodeXY")
private NodeXY[] nodeXY;


@JsonProperty("NodeLL")
public NodeLL[] getNodeLL() {
return nodeLL;
}
Expand Down

0 comments on commit 6a497f2

Please sign in to comment.