diff options
author | Matthew Draper <matthew@trebex.net> | 2017-10-28 22:45:34 +1030 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2017-10-28 22:55:34 +1030 |
commit | 7d264ba8cd7635afe1e511229a56bec8041c8cf7 (patch) | |
tree | d89501911ba477bcbf340f4deedbece65e6cbbf7 /activerecord/lib | |
parent | f50aeba01ee14f8fcd9fd98ec75b26cd5ef7aea8 (diff) | |
parent | 03dd47ff219098305a588e16d717813eebbfa7a4 (diff) | |
download | rails-7d264ba8cd7635afe1e511229a56bec8041c8cf7.tar.gz rails-7d264ba8cd7635afe1e511229a56bec8041c8cf7.tar.bz2 rails-7d264ba8cd7635afe1e511229a56bec8041c8cf7.zip |
Merge pull request #31005 from shuheiktgw/remove_unnecessary_semicolons
Removed unnecessary semicolons
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb b/activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb index 12fcfbcd45..1981da11a2 100644 --- a/activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb +++ b/activerecord/lib/active_record/associations/builder/has_and_belongs_to_many.rb @@ -47,7 +47,7 @@ module ActiveRecord::Associations::Builder # :nodoc: habtm = JoinTableResolver.build lhs_model, association_name, options join_model = Class.new(ActiveRecord::Base) { - class << self; + class << self attr_accessor :left_model attr_accessor :name attr_accessor :table_name_resolver |