I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 02ad4d52 authored by zzz's avatar zzz
Browse files

fix NPE

parent 56ae54c2
No related branches found
No related tags found
No related merge requests found
...@@ -42,14 +42,6 @@ public class WebAppConfiguration implements Configuration { ...@@ -42,14 +42,6 @@ public class WebAppConfiguration implements Configuration {
private static final String CLASSPATH = ".classpath"; private static final String CLASSPATH = ".classpath";
public void setWebAppContext(WebAppContext context) {
_wac = context;
}
public WebAppContext getWebAppContext() {
return _wac;
}
/** /**
* This was the interface in Jetty 5, now it's configureClassLoader() * This was the interface in Jetty 5, now it's configureClassLoader()
*/ */
...@@ -138,6 +130,7 @@ public class WebAppConfiguration implements Configuration { ...@@ -138,6 +130,7 @@ public class WebAppConfiguration implements Configuration {
/** @since Jetty 7 */ /** @since Jetty 7 */
public void configure(WebAppContext context) throws Exception { public void configure(WebAppContext context) throws Exception {
_wac = context;
configureClassPath(); configureClassPath();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment