in src/main/java/org/apache/sling/i18n/impl/PathFilter.java [49:55]
public boolean includePath(final String path) {
boolean included = this.includedPaths == null || this.includedPaths.matches(path) != null;
if (included) {
included = this.excludedPaths == null || this.excludedPaths.matches(path) == null;
}
return included;
}