aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2010-01-16 04:10:35 +0530
committerPratik Naik <pratiknaik@gmail.com>2010-01-16 04:21:18 +0530
commit99dd107760191b834d0a97e89c5ae991c088a4a8 (patch)
tree03b7e471694b170e8a0d8a0cc6f73e1a2d1dbb04 /activerecord
parentb3c87746efcf6c9f43ac1cd15a6ea728b46ecf9a (diff)
downloadrails-99dd107760191b834d0a97e89c5ae991c088a4a8.tar.gz
rails-99dd107760191b834d0a97e89c5ae991c088a4a8.tar.bz2
rails-99dd107760191b834d0a97e89c5ae991c088a4a8.zip
Remove unused default_select
Diffstat (limited to 'activerecord')
-rwxr-xr-xactiverecord/lib/active_record/base.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index 6b4a1d0071..38a012202d 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -1562,14 +1562,6 @@ module ActiveRecord #:nodoc:
end
end
- def default_select(qualified)
- if qualified
- quoted_table_name + '.*'
- else
- '*'
- end
- end
-
def construct_finder_arel(options = {}, scope = nil)
validate_find_options(options)