Skip to content

Commit

Permalink
fixed vintagewang#1 修复Java -D属性无法生效的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
vintagewang committed May 26, 2013
1 parent b5e7419 commit 322024e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JavaConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ void JavaConfig::buildNewOptionTable(OptionTable& table)

OptionTable::iterator it = this->propertyTable.begin();
for(; it != this->propertyTable.end(); it++) {
this->optionTable["-D" + it->first] = it->second;
table["-D" + it->first] = it->second;
}

// -Djava.class.path
Expand Down

0 comments on commit 322024e

Please sign in to comment.