]> source.dussan.org Git - sonarqube.git/commitdiff
Remove debug output
authorJulien Lancelot <julien.lancelot@gmail.com>
Fri, 8 Feb 2013 08:07:06 +0000 (09:07 +0100)
committerJulien Lancelot <julien.lancelot@gmail.com>
Fri, 8 Feb 2013 08:07:06 +0000 (09:07 +0100)
sonar-server/src/main/webapp/WEB-INF/app/controllers/search_controller.rb

index 9b2012b670c531319eaba3023c7aca833f5c4b45..7af3e0565391714b4bdfa766548aad133d4f0afa 100644 (file)
@@ -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 + '%'],