home *** CD-ROM | disk | FTP | other *** search
- package sun.misc;
-
- import java.io.File;
- import java.io.FileNotFoundException;
- import java.io.IOException;
- import java.security.PrivilegedExceptionAction;
- import java.util.jar.JarFile;
-
- final class ExtensionDependency$1 implements PrivilegedExceptionAction {
- // $FF: synthetic field
- final File val$file;
- // $FF: synthetic field
- final ExtensionDependency this$0;
-
- ExtensionDependency$1(ExtensionDependency var1, File var2) {
- this.this$0 = var1;
- this.val$file = var2;
- }
-
- public Object run() throws IOException, FileNotFoundException {
- if (!this.val$file.exists()) {
- throw new FileNotFoundException(this.val$file.getName());
- } else {
- JarFile var1 = new JarFile(this.val$file);
- return var1.getManifest();
- }
- }
- }
-