]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-4923 Remove no more used copyProfile()
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 17 Jan 2014 15:54:51 +0000 (16:54 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 17 Jan 2014 15:54:51 +0000 (16:54 +0100)
sonar-server/src/main/java/org/sonar/server/ui/JRubyFacade.java

index a01c72600ec1cb32a60b631af99cac1993fb9272..2cdfabebe5dbb2fb1e73e4b716ad4a2ea50ddc9e 100644 (file)
@@ -255,11 +255,6 @@ public final class JRubyFacade {
     return get(RuleRepositories.class).repositoriesForLang(languageKey);
   }
 
-  // TODO move this to QProfiles
-  public void copyProfile(long profileId, String newProfileName) {
-    getProfilesManager().copyProfile((int) profileId, newProfileName);
-  }
-
   public void ruleActivated(int parentProfileId, int activeRuleId, String userName) {
     getProfilesManager().activated(parentProfileId, activeRuleId, userName);
   }