--- old/src/jdk.jpackage/linux/native/libapplauncher/LinuxPlatform.cpp 2019-04-19 16:02:03.176788431 -0700 +++ new/src/jdk.jpackage/linux/native/libapplauncher/LinuxPlatform.cpp 2019-04-19 16:02:02.888788439 -0700 @@ -151,16 +151,12 @@ 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; } -TString LinuxPlatform::GetBundledJVMLibraryFileName(TString RuntimePath) { +TString LinuxPlatform::GetBundledJavaLibraryFileName(TString RuntimePath) { TString result = FilePath::IncludeTrailingSeparator(RuntimePath) + "lib/libjli.so";