Skip to content

Commit

Permalink
JENKINS-39410: fixed typo (double dot after string concatenation)
Browse files Browse the repository at this point in the history
  • Loading branch information
mparfianowicz committed Dec 13, 2016
1 parent fb0bacf commit 9363728
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/hudson/plugins/clover/CloverPublisher.java
Expand Up @@ -393,9 +393,9 @@ public boolean isApplicable(Class<? extends AbstractProject> jobType) {

private CoverageTarget fromRequest(StaplerRequest req, String namePrefix) {
return new CoverageTarget(
getIntParameter(req, namePrefix + ".methodCoverage"),
getIntParameter(req, namePrefix + ".conditionalCoverage"),
getIntParameter(req, namePrefix + ".statementCoverage")
getIntParameter(req, namePrefix + "methodCoverage"),
getIntParameter(req, namePrefix + "conditionalCoverage"),
getIntParameter(req, namePrefix + "statementCoverage")
);
}

Expand Down

1 comment on commit 9363728

@pdinc-oss
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ug. good catch.

Please sign in to comment.