< prev index next >

modules/jdk.packager/src/main/native/library/common/WindowsPlatform.cpp

Print this page

        

@@ -169,66 +169,10 @@
     }
 
     return result;
 }
 
-#define BUFFER_SIZE 256
-
-// try to find current Java Home from registry
-//
-// HKLM\Software\JavaSoft\Java Runtime Environment\CurrentVersion
-// HKLM\Software\JavaSoft\Java Runtime Environment\[CurrentVersion]\JavaHome
-//
-// note that this has been changed in JDK9 to
-//
-// HKLM\Software\JavaSoft\JRE\CurrentVersion
-// HKLM\Software\JavaSoft\JRE\[CurrentVersion]\JavaHome
-//
-// return non-empty string as path if found
-// return empty string otherwise
-
-TString GetSystemJREForSubkey(TString javaRuntimeSubkey) {
-    Registry registry(HKEY_LOCAL_MACHINE);
-    TString result;
-
-    if (registry.Open(javaRuntimeSubkey)) {
-        TString version = registry.ReadString(_T("CurrentVersion"));
-
-        if (!version.empty()) {
-            if (registry.Open(javaRuntimeSubkey + TString(_T("\\")) + TString(version))) {
-                TString javaHome = registry.ReadString(_T("JavaHome"));
-
-                if (FilePath::DirectoryExists(javaHome)) {
-                    result = javaHome;
-                }
-            }
-        }
-    }
-
-    return result;
-}
-
-TString WindowsPlatform::GetSystemJRE() {
-    if (GetAppCDSState() != cdsDisabled) {
-        //TODO throw exception
-        return _T("");
-    }
-
-    TString result;
-    result = GetSystemJREForSubkey(_T("SOFTWARE\\JavaSoft\\JRE"));
-    if (!result.empty()) {
-        return result;
-    }
-
-    result = GetSystemJREForSubkey(_T("SOFTWARE\\JavaSoft\\Java Runtime Environment"));
-    if (!result.empty()) {
-        return result;
-    }
-
-    return result;
-}
-
 void WindowsPlatform::ShowMessage(TString title, TString description) {
     MessageBox(NULL, description.data(), !title.empty() ? title.data() : description.data(), MB_ICONERROR | MB_OK);
 }
 
 void WindowsPlatform::ShowMessage(TString description) {

@@ -263,21 +207,10 @@
     }
 
     return result;
 }
 
-TString WindowsPlatform::GetSystemJVMLibraryFileName() {
-    TString result;
-    TString jvmPath = GetSystemJRE();
-
-    if (jvmPath.empty() == false) {
-        result = GetBundledJVMLibraryFileName(jvmPath);
-    }
-
-    return result;
-}
-
 ISectionalPropertyContainer* WindowsPlatform::GetConfigFile(TString FileName) {
     IniFile *result = new IniFile();
 
     if (result->LoadFromFile(FileName) == false) {
         // New property file format was not found, attempt to load old property file format.
< prev index next >