Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
amita-seal committed Sep 19, 2024
1 parent 3c89803 commit 81db8c9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/org/yaml/snakeyaml/resolver/ResolverTuple.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ final class ResolverTuple {
private final Pattern regexp;
private final int limit;

public ResolverTuple(Tag tag, Pattern regexp) {
this(tag, regexp, 1024);
}

public ResolverTuple(Tag tag, Pattern regexp, int limit) {
this.tag = tag;
this.regexp = regexp;
Expand Down

0 comments on commit 81db8c9

Please sign in to comment.