Skip to content

Commit

Permalink
[JENKINS-47589] Make findbugs happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyrille Le Clerc committed Oct 23, 2017
1 parent 607ebc9 commit 6d0becb
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -511,10 +511,10 @@ public String toPrettyString() {
LOGGER.log(Level.WARNING, "SQLException getting a connection to " + jdbcConnectionPool, e);
}

String result = "PipelineMavenPluginH2Dao ";
StringBuilder result = new StringBuilder("PipelineMavenPluginH2Dao ");
for (String prettyString : prettyStrings) {
result += "\r\n\t" + prettyString;
result.append("\r\n\t" + prettyString);
}
return result;
return result.toString();
}
}

0 comments on commit 6d0becb

Please sign in to comment.