Skip to content

Commit 8b3e13f

Browse files
authored
Merge pull request #2902 from SonarOpenCommunity/guwirth-patch-1
fix-2897
2 parents 4ffbd5c + 822b080 commit 8b3e13f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cxx-sensors/src/main/java/org/sonar/cxx/sensors/coverage/cobertura/CoberturaParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ private static void collectFileData(SMInputCursor clazz, CoverageMeasures builde
100100
noHits = Integer.parseInt(line.getAttrValue("hits"));
101101
} catch (NumberFormatException e) {
102102
LOG.warn(
103-
"CoverageParser: Truncating the actual number of hits to the maximum number supported by SonarQube, {}", e
103+
"CoverageParser: Truncating the actual number of hits to the maximum number supported by SonarQube", e
104104
);
105105
noHits = Integer.MAX_VALUE;
106106
}

0 commit comments

Comments
 (0)