Merge remote-tracking branch 'origin/jetty-8'

This commit is contained in:
Greg Wilkins 2013-04-05 09:59:03 +11:00
commit 4be4c954a5
1 changed files with 2 additions and 3 deletions

View File

@ -218,8 +218,7 @@ public abstract class Resource implements ResourceFactory
{ {
URL url=null; URL url=null;
// Try to format as a URL? // Try to format as a URL?
ClassLoader ClassLoader loader=Thread.currentThread().getContextClassLoader();
loader=Thread.currentThread().getContextClassLoader();
if (loader!=null) if (loader!=null)
{ {
try try
@ -251,7 +250,7 @@ public abstract class Resource implements ResourceFactory
{ {
url=ClassLoader.getSystemResource(resource); url=ClassLoader.getSystemResource(resource);
if (url==null && resource.startsWith("/")) if (url==null && resource.startsWith("/"))
url=loader.getResource(resource.substring(1)); url=ClassLoader.getSystemResource(resource.substring(1));
} }
if (url==null) if (url==null)