/* 355 */ expWarFile.delete();
/* 356 */ if (!expWarFile.mkdir())
/* 357 */ throw new DeploymentException("Was unable to mkdir: " + expWarFile);
/* 358 */ this.log.debug("Unpacking war to: " + expWarFile);
/* 359 */ VirtualFile root = unit.getRoot();
/* 360 */ InputStream is = root.openStream();
/* 361 */ JarUtils.unjar(is, expWarFile);
/* 362 */ is.close();
/* 363 */ expWarUrl = expWarFile.toURL();
/* */
/* 366 */ VirtualFile warVF = unit.getRoot();