346347348349350351352353
throws FileDeletingException { String jarPath = String.format(JAR_FILE, parentFolder, jarName) ; File jar = new File(jarPath) ; boolean sucess = jar.delete() ; if (!sucess) { throw new FileDeletingException(jar) ; }// if }// removeJar(String)
414415416417418419420421422
} catch (SecurityException se) { deleted = false; }// try if (!deleted) { throw new FileDeletingException(pictureFile) ; }// if }// for }// removeImages(PlugInInfo)