Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
Fixed naming of tool: SonarQube
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Jul 10, 2018
1 parent d5fa787 commit b73e572
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,21 @@
*
* @author Ullrich Hafner
*/
public class SonarCube extends StaticAnalysisTool {
public class SonarQube extends StaticAnalysisTool {
static final String ID = "sonar";

/** Creates a new instance of {@link SonarCube}. */
/** Creates a new instance of {@link SonarQube}. */
@DataBoundConstructor
public SonarCube() {
public SonarQube() {
super();
// empty constructor required for stapler
}

// FIXME: See https://issues.jenkins-ci.org/browse/JENKINS-52463
// StaticAnalysisTool or Composite
@Override
public IssueParser createParser() {
return new SonarQubeIssuesParser();
return new SonarQubeIssuesParser();
}

/** Provides the labels for the static analysis tool. */
Expand Down

0 comments on commit b73e572

Please sign in to comment.