Skip to content

Commit

Permalink
Follow up fix for: Performance - Method concatenates strings using + in
Browse files Browse the repository at this point in the history
a loop - TRUNK-4226
  • Loading branch information
dkayiwa committed Feb 4, 2014
1 parent 7b6e6e2 commit 5b301b5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1440,7 +1440,7 @@ public void run() {

runtimeProperties.put("connection.url", finalDatabaseConnectionString);
runtimeProperties.put("connection.username", connectionUsername);
runtimeProperties.put("connection.password", connectionPassword);
runtimeProperties.put("connection.password", connectionPassword.toString());
if (StringUtils.hasText(wizardModel.databaseDriver)) {
runtimeProperties.put("connection.driver_class", wizardModel.databaseDriver);
}
Expand Down

0 comments on commit 5b301b5

Please sign in to comment.