aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2014-10-01 11:29:20 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2014-10-02 15:27:03 +0200
commit240b8ff523e011967f6bc351bf351be69259183f (patch)
treec957e8d255ac51786a503c22d46d1182b1677943 /server/sonar-web
parentda5690d26948231b56a1c0dde2d5bcffdc1667c0 (diff)
downloadsonarqube-240b8ff523e011967f6bc351bf351be69259183f.tar.gz
sonarqube-240b8ff523e011967f6bc351bf351be69259183f.zip
SONAR-5529 Remove IssueFinder API and all related classes
Diffstat (limited to 'server/sonar-web')
-rw-r--r--server/sonar-web/src/main/webapp/WEB-INF/app/models/api.rb6
-rw-r--r--server/sonar-web/src/main/webapp/WEB-INF/app/models/internal.rb4
2 files changed, 0 insertions, 10 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/models/api.rb b/server/sonar-web/src/main/webapp/WEB-INF/app/models/api.rb
index 0c0e6bcda66..0e1ee3ebc14 100644
--- a/server/sonar-web/src/main/webapp/WEB-INF/app/models/api.rb
+++ b/server/sonar-web/src/main/webapp/WEB-INF/app/models/api.rb
@@ -22,12 +22,6 @@
# as an API and can evolve through time.
class Api
- # See the javadoc of org.sonar.api.issue.RubyIssueService.
- # Since 3.6
- def self.issues
- Internal.issues_api
- end
-
# See the javadoc of org.sonar.api.user.RubyUserService
# Since 3.6
def self.users
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/models/internal.rb b/server/sonar-web/src/main/webapp/WEB-INF/app/models/internal.rb
index d2bd4ed0bf0..dc2e9aaa395 100644
--- a/server/sonar-web/src/main/webapp/WEB-INF/app/models/internal.rb
+++ b/server/sonar-web/src/main/webapp/WEB-INF/app/models/internal.rb
@@ -26,10 +26,6 @@ class Internal
component(Java::OrgSonarServerIssue::InternalRubyIssueService.java_class)
end
- def self.issues_api
- component(Java::OrgSonarApiIssue::RubyIssueService.java_class)
- end
-
def self.text
component(Java::OrgSonarServerText::RubyTextService.java_class)
end