Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Bartel2013-10-28 04:25:21 +0000
committerJan Bartel2013-10-28 04:25:21 +0000
commit9d756dc018de2af33dfd3fd4e307427e7b6f441e (patch)
tree2978727b0f7abbd8304a7e72ffdcf8bf62964103 /jetty-ant
parentfc6493b5b1153a282f533e2deee316e4db0b40c8 (diff)
downloadorg.eclipse.jetty.project-9d756dc018de2af33dfd3fd4e307427e7b6f441e.tar.gz
org.eclipse.jetty.project-9d756dc018de2af33dfd3fd4e307427e7b6f441e.tar.xz
org.eclipse.jetty.project-9d756dc018de2af33dfd3fd4e307427e7b6f441e.zip
294531 Unpacking webapp twice to the same directory name causes problems with updated jars in WEB-INF/lib
Diffstat (limited to 'jetty-ant')
-rw-r--r--jetty-ant/src/main/java/org/eclipse/jetty/ant/AntWebInfConfiguration.java7
1 files changed, 1 insertions, 6 deletions
diff --git a/jetty-ant/src/main/java/org/eclipse/jetty/ant/AntWebInfConfiguration.java b/jetty-ant/src/main/java/org/eclipse/jetty/ant/AntWebInfConfiguration.java
index bb3e322377..a8535e99c7 100644
--- a/jetty-ant/src/main/java/org/eclipse/jetty/ant/AntWebInfConfiguration.java
+++ b/jetty-ant/src/main/java/org/eclipse/jetty/ant/AntWebInfConfiguration.java
@@ -40,12 +40,7 @@ public class AntWebInfConfiguration extends WebInfConfiguration
@Override
public void preConfigure(final WebAppContext context) throws Exception
- {
- // Look for a work directory
- File work = findWorkDirectory(context);
- if (work != null)
- makeTempDirectory(work, context, false);
-
+ {
//Make a temp directory for the webapp if one is not already set
resolveTempDirectory(context);

Back to the top