Skip to content

Commit

Permalink
Update common/src/main/java/com/linecorp/centraldogma/common/PathPatt…
Browse files Browse the repository at this point in the history
…ern.java

Co-authored-by: Trustin Lee <[email protected]>
  • Loading branch information
noodlze and trustin authored Mar 19, 2023
1 parent 49b5d3f commit 892ecf3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ static PathPattern of(PathPattern... pathPatterns) {
if (pathPatterns.length == 1) {
return pathPatterns[0];
}
return new DefaultPathPattern(ImmutableList.copyOf(pathPatterns));
return new DefaultPathPattern(ImmutableSet.copyOf(pathPatterns));
}

/**
Expand Down

0 comments on commit 892ecf3

Please sign in to comment.