Skip to content

Commit

Permalink
make JsonVisitorImpl private
Browse files Browse the repository at this point in the history
Signed-off-by: YANGDB <[email protected]>
  • Loading branch information
YANG-DB committed Oct 27, 2023
1 parent 2353a14 commit 92bce29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public ExecutionEngine.Schema schema() {
}

/** visitor implementation for traversing the json object */
public static class JsonVisitorImpl implements JsonVisitor<ExprValue> {
private static class JsonVisitorImpl implements JsonVisitor<ExprValue> {
public ExprValue visit(Object obj) {
if (obj instanceof JSONObject) {
return visitObject((JSONObject) obj);
Expand Down

0 comments on commit 92bce29

Please sign in to comment.