Skip to content

Commit

Permalink
Fixed recursive parsing bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
david-waltermire committed Dec 18, 2023
1 parent 549fb9e commit 3d3387f
Show file tree
Hide file tree
Showing 2 changed files with 132 additions and 100 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,10 @@ public interface IJsonParsingContext extends IParsingContext<JsonParser, IJsonPr
public interface IInstanceReader extends IItemReadHandler {
@NonNull
JsonParser getJsonParser();

@NonNull
ItemReader getItemReader();
}

public interface ItemReader extends IItemReadHandler {
@NonNull
JsonParser getJsonParser();
// no additional methods
}

}
Loading

0 comments on commit 3d3387f

Please sign in to comment.