예제 #1
0
void Package::SaveJVMUserArgOverrides(OrderedMap<TString, TString> Data) {
    IniFile userConfig;
    Platform& platform = Platform::GetInstance();
    std::map<TString, TString> keys = platform.GetKeys();
    userConfig.AppendSection(keys[CONFIG_SECTION_JVMUSEROVERRIDESOPTIONS], Data);
    userConfig.SaveToFile(GetJVMUserArgsConfigFileName());
}