- Timestamp:
- 09/06/12 09:45:30 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-core/src/main/java/de/ugoe/cs/quest/plugin/PluginLoader.java
r766 r776 126 126 127 127 JarInputStream jarInputStream = null; 128 Manifest manifest = null; 128 129 try { 129 jarInputStream = new JarInputStream(new FileInputStream(jarFile)); 130 FileInputStream fileStream = new FileInputStream(jarFile); 131 try { 132 jarInputStream = new JarInputStream(fileStream); 133 manifest = jarInputStream.getManifest(); 134 } finally { 135 jarInputStream.close(); 136 fileStream.close(); 137 } 130 138 } catch (FileNotFoundException e) { 131 139 throw new AssertionError( … … 134 142 throw new PluginLoaderException(e); 135 143 } 136 137 Manifest manifest = jarInputStream.getManifest();138 144 139 145 String jarClassPath = manifest.getMainAttributes().getValue(
Note: See TracChangeset
for help on using the changeset viewer.