Skip to content
Snippets Groups Projects
Commit 76efd28b authored by Matthias Sohn's avatar Matthias Sohn
Browse files

RecursiveMerger: fix boxing warning

Change-Id: I6f6ae540b128ff6b965931e829da1368a8b88ddb
parent 85c84f2f
No related branches found
No related tags found
No related merge requests found
......@@ -249,7 +249,7 @@ private String failingPathsMessage() {
if (failingPaths.size() > max) {
failedPaths = String.format("%s\n... (%s failing paths omitted)", //$NON-NLS-1$
failedPaths, failingPaths.size() - max);
failedPaths, Integer.valueOf(failingPaths.size() - max));
}
return failedPaths;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment