Skip to content

Commit

Permalink
Do not use String.format().
Browse files Browse the repository at this point in the history
  • Loading branch information
natthu authored and denji committed Jul 21, 2015
1 parent c78c75d commit d6906fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ public void run() {
String key = line.substring(0, equalsIndex);
String value = line.substring(equalsIndex + 1);
remoteEnv.setProperty(key, value);
LOGGER.fine(String.format("Setting env: key(%s)=value(%s).", key, value));
LOGGER.fine("Setting env: key('" + key + "')=value('" + value + "').");
}
break;

Expand Down

0 comments on commit d6906fb

Please sign in to comment.