diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-08 09:07:06 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-08 09:07:06 +0100 |
commit | eda1dbef9ea4d4c398d257b9a4b7c9ea12a44fb6 (patch) | |
tree | 432504f7e5d9d4bb1058844f5b61dfd2f5100163 /sonar-server | |
parent | 51fbc048418de8d69342d8278b75c9251e320a23 (diff) | |
download | sonarqube-eda1dbef9ea4d4c398d257b9a4b7c9ea12a44fb6.tar.gz sonarqube-eda1dbef9ea4d4c398d257b9a4b7c9ea12a44fb6.zip |
Remove debug output
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/controllers/search_controller.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/controllers/search_controller.rb b/sonar-server/src/main/webapp/WEB-INF/app/controllers/search_controller.rb index 9b2012b670c..7af3e056539 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/controllers/search_controller.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/controllers/search_controller.rb @@ -32,7 +32,6 @@ class SearchController < ApplicationController bad_request("Minimum search is #{ResourceIndex::MIN_SEARCH_SIZE} characters") if search.empty? || search.to_s.size<ResourceIndex::MIN_SEARCH_SIZE key = escape_like(search).downcase - puts "#### "+ key.to_s results = ResourceIndex.find(:all, :select => 'distinct(resource_id),root_project_id,qualifier,name_size', # optimization to not load unused columns like 'kee' :conditions => ["kee like ?", key + '%'], |