src/jdk.jpackage/share/native/libapplauncher/Package.cpp
branchJDK-8200758-branch
changeset 57450 82c78b40b39d
parent 57323 66c1dbc008c5
child 57455 f1290ca0fee6
equal deleted inserted replaced
57448:ac7b7fe5f7d8 57450:82c78b40b39d
    76             FilePath::FixPathForPlatform(FBootFields->FPackageAppDataDirectory);
    76             FilePath::FixPathForPlatform(FBootFields->FPackageAppDataDirectory);
    77 
    77 
    78     // Main JAR.
    78     // Main JAR.
    79     config->GetValue(keys[CONFIG_SECTION_APPLICATION],
    79     config->GetValue(keys[CONFIG_SECTION_APPLICATION],
    80             keys[CONFIG_MAINJAR_KEY], FBootFields->FMainJar);
    80             keys[CONFIG_MAINJAR_KEY], FBootFields->FMainJar);
    81     FBootFields->FMainJar =
    81     FBootFields->FMainJar = FilePath::FixPathForPlatform(FBootFields->FMainJar);
    82             FilePath::IncludeTrailingSeparator(GetPackageAppDirectory())
       
    83             + FilePath::FixPathForPlatform(FBootFields->FMainJar);
       
    84 
    82 
    85     // Main Module.
    83     // Main Module.
    86     config->GetValue(keys[CONFIG_SECTION_APPLICATION],
    84     config->GetValue(keys[CONFIG_SECTION_APPLICATION],
    87             keys[CONFIG_MAINMODULE_KEY], FBootFields->FMainModule);
    85             keys[CONFIG_MAINMODULE_KEY], FBootFields->FMainModule);
    88 
    86