aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephane Gamard <stephane.gamard@searchbox.com>2014-05-06 14:56:11 +0200
committerStephane Gamard <stephane.gamard@searchbox.com>2014-05-06 14:56:27 +0200
commitb0417ed704fe7aff5280a6c4ada202172b2e65e5 (patch)
tree8e3179eff50d5f97b65d4edb4d6bf6366600136e
parent0caabf90f1697b47eb14c56613fb1b13db0014f6 (diff)
downloadsonarqube-b0417ed704fe7aff5280a6c4ada202172b2e65e5.tar.gz
sonarqube-b0417ed704fe7aff5280a6c4ada202172b2e65e5.zip
Removed debug output
-rw-r--r--sonar-server/src/main/java/org/sonar/server/rule2/RuleDao.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/sonar-server/src/main/java/org/sonar/server/rule2/RuleDao.java b/sonar-server/src/main/java/org/sonar/server/rule2/RuleDao.java
index 5199f144403..2c57f127c76 100644
--- a/sonar-server/src/main/java/org/sonar/server/rule2/RuleDao.java
+++ b/sonar-server/src/main/java/org/sonar/server/rule2/RuleDao.java
@@ -277,7 +277,6 @@ public class RuleDao extends BaseDao<RuleMapper, RuleDto, RuleKey>
// ***************************
public void insert(RuleRuleTagDto newTag, DbSession session) {
- System.out.println("newTag = [" + newTag + "], session = [" + session + "]");
getMapper(session).insertTag(newTag);
session.enqueue(new EmbeddedIndexAction<RuleKey>(this.getIndexType(),
IndexAction.Method.INSERT, newTag,