Walter-Steiner opened a new pull request, #332:
URL: https://github.com/apache/jackrabbit-filevault/pull/332
After a lot of searching I found the following error in the class
"org.apache.jackrabbit.vault.rcp.impl.RcpTaskImpl":
private static WorkspaceFilter createFilterForExcludes(List<String>
excludes) throws ConfigurationException {
// could be done better
DefaultWorkspaceFilter srcFilter = new DefaultWorkspaceFilter();
PathFilterSet filterSet = new PathFilterSet("/");
for (String path : excludes) {
filterSet.addExclude(new DefaultPathFilter(path));
}
**srcFilter.add(filterSet);**
return srcFilter;
}
The line marked bold was missing.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]