Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Dec 30, 2024
1 parent 000ddf6 commit 4717230
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,8 @@ public Iterator<JsonNode> elements() {
public JsonNode get(int index) { return null; }

@Override
public JsonNode get(String fieldName) {
return _children.get(fieldName);
public JsonNode get(String propertyName) {
return _children.get(propertyName);
}

/**
Expand Down

0 comments on commit 4717230

Please sign in to comment.