Skip to content

Commit

Permalink
Update FilteringGeneratorDelegate.java
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Jun 18, 2023
1 parent 6e9b35b commit 19ae34f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public class FilteringGeneratorDelegate extends JsonGeneratorDelegate
*/
@Deprecated
public FilteringGeneratorDelegate(JsonGenerator d, TokenFilter f,
boolean includePath, boolean allowMultipleMatches)
boolean includePath, boolean allowMultipleMatches)
{
this(d, f, includePath ? Inclusion.INCLUDE_ALL_AND_PATH : Inclusion.ONLY_INCLUDE_ALL, allowMultipleMatches);
}
Expand All @@ -106,7 +106,7 @@ public FilteringGeneratorDelegate(JsonGenerator d, TokenFilter f,
* @since 2.12
*/
public FilteringGeneratorDelegate(JsonGenerator d, TokenFilter f,
TokenFilter.Inclusion inclusion, boolean allowMultipleMatches)
TokenFilter.Inclusion inclusion, boolean allowMultipleMatches)
{
// By default, do NOT delegate copy methods
super(d, false);
Expand Down

0 comments on commit 19ae34f

Please sign in to comment.