Skip to content

Commit

Permalink
Minor clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Mar 7, 2023
1 parent 28c4699 commit 0389480
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,10 @@ public abstract class JPropReadContext

public JPropReadContext(int contextType, JPropReadContext p, JPropNode node)
{
super();
_type = contextType;
_index = -1;
super(contextType, -1);
_parent = p;
_branchText = node.getValue();
_nestingDepth = p == null ? 0 : p._nestingDepth + 1;
_nestingDepth = (p == null) ? 0 : p._nestingDepth + 1;
}

public static JPropReadContext create(JPropNode root) {
Expand Down

0 comments on commit 0389480

Please sign in to comment.