]> source.dussan.org Git - sonarqube.git/commitdiff
Removed debug output
authorStephane Gamard <stephane.gamard@searchbox.com>
Thu, 15 May 2014 09:46:53 +0000 (11:46 +0200)
committerStephane Gamard <stephane.gamard@searchbox.com>
Thu, 15 May 2014 09:46:53 +0000 (11:46 +0200)
sonar-server/src/main/java/org/sonar/server/rule2/index/RuleResult.java

index 8134b9fd6306a841aa7cf4f0edb160735ce270e3..baf1ffbab7c30e5afddba8a232c7338c2ceab676 100644 (file)
@@ -44,8 +44,6 @@ public class RuleResult extends Result<Rule> {
         Map<String, Map<String, Object>> activeRulesForHit =
           hit.getFields().get(RuleNormalizer.RuleField.ACTIVE.key()).getValue();
         for (Map.Entry<String, Map<String, Object>> activeRule : activeRulesForHit.entrySet()) {
-          System.out.println("ruleKey = " + ruleKey);
-          System.out.println("activeRule = " + activeRule);
           activeRules.put(ruleKey,
             new ActiveRuleDoc(ActiveRuleKey.parse(activeRule.getKey()), activeRule.getValue()));
         }
@@ -63,7 +61,6 @@ public class RuleResult extends Result<Rule> {
   }
 
   public  Multimap<String,ActiveRuleDoc> getActiveRules() {
-    System.out.println("activeRules = " + activeRules);
     return this.activeRules;
   }
 }