Skip to content

Commit

Permalink
RESTWS-774: Fix infinite recursion in OpenmrsPathMatcher#matchStart
Browse files Browse the repository at this point in the history
  • Loading branch information
HerbertYiga authored and ibacher committed May 8, 2020
1 parent 8868972 commit b8354f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public boolean match(String pattern, String path) {

@Override
public boolean matchStart(String pattern, String path) {
return this.matchStart(pattern, path);
return this.delegate.matchStart(pattern, path);
}

@Override
Expand Down

0 comments on commit b8354f2

Please sign in to comment.