Skip to content

Commit

Permalink
Minor updates based on PR#1058
Browse files Browse the repository at this point in the history
The original repo no longer exists:
#1058
  • Loading branch information
rstoyanchev committed Mar 30, 2018
1 parent d232fff commit b104897
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,9 @@ public List<String> getMatchingPatterns(String lookupPath) {
matches.add(match);
}
}
matches.sort(this.pathMatcher.getPatternComparator(lookupPath));
if (matches.size() > 1) {
matches.sort(this.pathMatcher.getPatternComparator(lookupPath));
}
return matches;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public interface SseEventBuilder {
SseEventBuilder name(String eventName);

/**
* Add an SSE "event" line.
* Add an SSE "retry" line.
*/
SseEventBuilder reconnectTime(long reconnectTimeMillis);

Expand Down

0 comments on commit b104897

Please sign in to comment.