in server/src/jetbrains/buildServer/staticUIExtensions/model/AndMatcher.java [20:25]
public boolean matches(@NotNull String url) {
for (UrlMatcher matcher : myMatchers) {
if (!matcher.matches(url)) return false;
}
return true;
}