diff options
author | Sean Griffin <sean@thoughtbot.com> | 2014-11-17 05:59:06 -0800 |
---|---|---|
committer | Sean Griffin <sean@thoughtbot.com> | 2014-11-17 05:59:29 -0800 |
commit | 409e7e4fc5332bf6199ac927d816c51f1d6a3307 (patch) | |
tree | 2302eea5f2927a052b068d65316531cdbcbcd8e7 /activerecord/lib | |
parent | ed1c3bcb5d06bcc81ecfba8999643059c980c0ab (diff) | |
download | rails-409e7e4fc5332bf6199ac927d816c51f1d6a3307.tar.gz rails-409e7e4fc5332bf6199ac927d816c51f1d6a3307.tar.bz2 rails-409e7e4fc5332bf6199ac927d816c51f1d6a3307.zip |
Remove pointless `private`
This class no longer has any private methods
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/attribute_set/builder.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/attribute_set/builder.rb b/activerecord/lib/active_record/attribute_set/builder.rb index 73b77d2eda..60154a0647 100644 --- a/activerecord/lib/active_record/attribute_set/builder.rb +++ b/activerecord/lib/active_record/attribute_set/builder.rb @@ -16,8 +16,6 @@ module ActiveRecord attributes = LazyAttributeHash.new(types, values, additional_types) AttributeSet.new(attributes) end - - private end end |