]> source.dussan.org Git - sonarqube.git/commitdiff
Remove project verification
authorJulien Lancelot <julien.lancelot@gmail.com>
Thu, 30 May 2013 09:48:23 +0000 (11:48 +0200)
committerJulien Lancelot <julien.lancelot@gmail.com>
Thu, 30 May 2013 09:48:35 +0000 (11:48 +0200)
sonar-batch/src/main/java/org/sonar/batch/issue/ScanIssues.java

index fa59a1d64c4c77b55a1dec8ead3b97e9ac74b6b1..f3da90111a147e56efb2ea091b0108e00e8ec27a 100644 (file)
@@ -59,6 +59,7 @@ public class ScanIssues implements BatchComponent {
   private DefaultIssue newIssue(Violation violation) {
     return (DefaultIssue) new DefaultIssueBuilder()
       .componentKey(violation.getResource().getEffectiveKey())
+//      .projectKey(violation.getResource().getEffectiveKey())
       .ruleKey(RuleKey.of(violation.getRule().getRepositoryKey(), violation.getRule().getKey()))
       .effortToFix(violation.getCost())
       .line(violation.getLineId())