Skip to content

Commit

Permalink
Extra trim is no longer necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
ghorwin committed Dec 31, 2024
1 parent bc612ea commit a3bdaf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MasterSim/src/MSIM_Project.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ void Project::SimulatorDef::parse(const std::string & simulatorDef) {
m_cycle = IBK::string2val<unsigned int>(tokens[1]);
m_name = IBK::trim_copy(tokens[2]);
m_color = IBK::Color::fromHtml(tokens[3]);
m_pathToFMU = IBK::Path( IBK::trim_copy(tokens[4], "\"") ); // mind: may be a relative path to project, and we keep it that way
m_pathToFMU = IBK::Path( tokens[4] ); // mind: may be a relative path to project, and we keep it that way
}
catch (IBK::Exception & ex) {
throw IBK::Exception(ex, IBK::FormatString("Bad format of simulator definition line '%1'.").arg(simulatorDef), FUNC_ID);
Expand Down

0 comments on commit a3bdaf1

Please sign in to comment.