diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-11-28 17:26:33 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-11-28 17:26:33 -0200 |
commit | 0f89797fe3857f1432403a643f1cdf6f3bec3c9d (patch) | |
tree | fdb6815537914cd2db3dfd488f350af8a00273a3 | |
parent | b2566429fe01d1037e525c78b3bbfc7f53d8d0a7 (diff) | |
parent | c05cf18a6a90a7326b7f07502f7c3a3d75567c9a (diff) | |
download | rails-0f89797fe3857f1432403a643f1cdf6f3bec3c9d.tar.gz rails-0f89797fe3857f1432403a643f1cdf6f3bec3c9d.tar.bz2 rails-0f89797fe3857f1432403a643f1cdf6f3bec3c9d.zip |
Merge pull request #17818 from bigtone1284/edits_refactor_cop
fixed indent of end in jdom.rb
-rw-r--r-- | activesupport/lib/active_support/xml_mini/jdom.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/xml_mini/jdom.rb b/activesupport/lib/active_support/xml_mini/jdom.rb index 27c64c4dca..f303daa1a7 100644 --- a/activesupport/lib/active_support/xml_mini/jdom.rb +++ b/activesupport/lib/active_support/xml_mini/jdom.rb @@ -141,7 +141,7 @@ module ActiveSupport (0...attributes.length).each do |i| attribute_hash[CONTENT_KEY] ||= '' attribute_hash[attributes.item(i).name] = attributes.item(i).value - end + end attribute_hash end |