src/jdk.jpackage/linux/native/libapplauncher/LinuxPlatform.cpp
branchJDK-8200758-branch
changeset 57323 66c1dbc008c5
parent 57316 2891b3ae222d
child 57397 89549ecec1c7
equal deleted inserted replaced
57320:5a5e00cc9932 57323:66c1dbc008c5
   149     IniFile *result = new IniFile();
   149     IniFile *result = new IniFile();
   150     if (result == NULL) {
   150     if (result == NULL) {
   151         return NULL;
   151         return NULL;
   152     }
   152     }
   153 
   153 
   154     if (result->LoadFromFile(FileName) == false) {
   154     result->LoadFromFile(FileName);
   155         // New property file format was not found,
       
   156         // attempt to load old property file format.
       
   157         Helpers::LoadOldConfigFile(FileName, result);
       
   158     }
       
   159 
   155 
   160     return result;
   156     return result;
   161 }
   157 }
   162 
   158 
   163 TString LinuxPlatform::GetBundledJavaLibraryFileName(TString RuntimePath) {
   159 TString LinuxPlatform::GetBundledJavaLibraryFileName(TString RuntimePath) {