]> source.dussan.org Git - sonarqube.git/commitdiff
Remove unused method
authorJulien HENRY <julien.henry@sonarsource.com>
Mon, 9 Sep 2013 08:27:15 +0000 (10:27 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Mon, 9 Sep 2013 08:28:14 +0000 (10:28 +0200)
sonar-plugin-api/src/main/java/org/sonar/api/resources/Languages.java

index 6cc4380acc289bc7be153cc84035c6b8d128d9fd..b062fe1fa8bb69c7642e0cc40631b200673aa91b 100644 (file)
@@ -30,7 +30,6 @@ import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.List;
 import java.util.Map;
-import java.util.Set;
 
 /**
  * A class to store the list of languages
@@ -90,11 +89,4 @@ public class Languages implements BatchComponent, ServerComponent {
     map.put(language.getKey(), language);
   }
 
-  /**
-   * @return list of all available language keys
-   * @since 3.7.1
-   */
-  public Set<String> allKey() {
-    return map.keySet();
-  }
 }