--- old/src/jdk.jpackage/windows/native/libapplauncher/WindowsPlatform.cpp 2019-04-19 16:02:24.912787836 -0700 +++ new/src/jdk.jpackage/windows/native/libapplauncher/WindowsPlatform.cpp 2019-04-19 16:02:24.636787844 -0700 @@ -221,7 +221,7 @@ return result; } -TString WindowsPlatform::GetBundledJVMLibraryFileName(TString RuntimePath) { +TString WindowsPlatform::GetBundledJavaLibraryFileName(TString RuntimePath) { TString result = FilePath::IncludeTrailingSeparator(RuntimePath) + _T("jre\\bin\\jli.dll"); @@ -239,11 +239,7 @@ return NULL; } - if (result->LoadFromFile(FileName) == false) { - // New property file format was not found, - // attempt to load old property file format. - Helpers::LoadOldConfigFile(FileName, result); - } + result->LoadFromFile(FileName); return result; }