diff options
author | Emilio Tagua <miloops@gmail.com> | 2009-12-27 17:03:27 -0300 |
---|---|---|
committer | Emilio Tagua <miloops@gmail.com> | 2009-12-27 17:03:27 -0300 |
commit | 82a519d623faf7cfb137b7ed079dc8ae872e2a7e (patch) | |
tree | 2a4e64a4cf40dd439018fa6123e62508396497b1 /lib/arel | |
parent | 49a8c7bd5168ca84897166527f5c0d90126dc402 (diff) | |
download | rails-82a519d623faf7cfb137b7ed079dc8ae872e2a7e.tar.gz rails-82a519d623faf7cfb137b7ed079dc8ae872e2a7e.tar.bz2 rails-82a519d623faf7cfb137b7ed079dc8ae872e2a7e.zip |
Removed useless attribute definition from TableReference.
Diffstat (limited to 'lib/arel')
-rw-r--r-- | lib/arel/engines/sql/formatters.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/arel/engines/sql/formatters.rb b/lib/arel/engines/sql/formatters.rb index a13e11f24f..626803a887 100644 --- a/lib/arel/engines/sql/formatters.rb +++ b/lib/arel/engines/sql/formatters.rb @@ -98,10 +98,6 @@ module Arel (table.name != name_for(table) ? " AS " + quote_table_name(name_for(table)) : '') end end - - def attribute(attribute) - attribute - end end class Attribute < WhereCondition |