]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7330 RuleUpdater is now using RuleIndexer - F
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 29 Feb 2016 10:50:04 +0000 (11:50 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 29 Feb 2016 12:26:54 +0000 (13:26 +0100)
server/sonar-server/src/main/java/org/sonar/server/rule/RuleUpdater.java

index 0a30fcaaa02fe8f27ed6df713fd244204144c195..16facc8c0118ace74cfe4e523536e48583009e50 100644 (file)
@@ -19,7 +19,6 @@
  */
 package org.sonar.server.rule;
 
-import com.google.common.annotations.VisibleForTesting;
 import com.google.common.base.Optional;
 import com.google.common.base.Preconditions;
 import com.google.common.base.Strings;
@@ -94,16 +93,6 @@ public class RuleUpdater {
     return true;
   }
 
-  @VisibleForTesting
-  boolean update(RuleUpdate update, UserSession userSession) {
-    DbSession dbSession = dbClient.openSession(false);
-    try {
-      return update(dbSession, update, userSession);
-    } finally {
-      dbClient.closeSession(dbSession);
-    }
-  }
-
   /**
    * Load all the DTOs required for validating changes and updating rule
    */