< prev index next >

modules/jdk.packager/src/main/native/library/common/MacPlatform.mm

Print this page

        

@@ -179,30 +179,10 @@
     }
 
     return result;
 }
 
-
-TString MacPlatform::GetSystemJRE() {
-    if (GetAppCDSState() != cdsDisabled) {
-        //TODO throw exception
-        return _T("");
-    }
-
-    return _T("/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/jli/libjli.dylib");
-}
-
-TString MacPlatform::GetSystemJVMLibraryFileName() {
-    TString result = GetSystemJRE();
-
-    if (FilePath::FileExists(result) == false) {
-        result = _T("");
-    }
-
-    return result;
-}
-
 TString MacPlatform::GetAppName() {
     NSString *appName = [[NSProcessInfo processInfo] processName];
     TString result = [appName UTF8String];
     return result;
 }
< prev index next >