Skip to content

Commit

Permalink
WW-4038 Solves a bug with struts.convention.action.includeJars
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@1469182 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
lukaszlenart committed Apr 18, 2013
1 parent 8cef213 commit f546487
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ private List<URL> readUrls() throws IOException {
private UrlSet buildUrlSet(List<URL> resourceUrls) throws IOException {
ClassLoaderInterface classLoaderInterface = getClassLoaderInterface();
UrlSet urlSet = new UrlSet(resourceUrls);
urlSet.include(new UrlSet(classLoaderInterface, this.fileProtocols));
urlSet = urlSet.include(new UrlSet(classLoaderInterface, this.fileProtocols));

//excluding the urls found by the parent class loader is desired, but fails in JBoss (all urls are removed)
if (excludeParentClassLoader) {
Expand Down

0 comments on commit f546487

Please sign in to comment.