diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-05-24 09:06:44 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-05-24 09:06:44 -0700 |
commit | 68d5abeaffd1006b59d0a5dcee666e168d1c4c78 (patch) | |
tree | 9b484875e573bc7b4646dd01f7b1752be063ae50 /activesupport/lib | |
parent | dea40350820a51c72924bd10817d93b2d5c2229b (diff) | |
parent | 89da0d3ab9ac705c61e4e9b718268b2dab1df393 (diff) | |
download | rails-68d5abeaffd1006b59d0a5dcee666e168d1c4c78.tar.gz rails-68d5abeaffd1006b59d0a5dcee666e168d1c4c78.tar.bz2 rails-68d5abeaffd1006b59d0a5dcee666e168d1c4c78.zip |
Merge pull request #1251 from arunagw/java_import
Using java_import instead of import. Need to do this with rake 0.9.0 #jruby
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/xml_mini/jdom.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/activesupport/lib/active_support/xml_mini/jdom.rb b/activesupport/lib/active_support/xml_mini/jdom.rb index 48c1cb3fe9..7aefabfdd1 100644 --- a/activesupport/lib/active_support/xml_mini/jdom.rb +++ b/activesupport/lib/active_support/xml_mini/jdom.rb @@ -5,12 +5,12 @@ include Java require 'active_support/core_ext/object/blank' -import javax.xml.parsers.DocumentBuilder unless defined? DocumentBuilder -import javax.xml.parsers.DocumentBuilderFactory unless defined? DocumentBuilderFactory -import java.io.StringReader unless defined? StringReader -import org.xml.sax.InputSource unless defined? InputSource -import org.xml.sax.Attributes unless defined? Attributes -import org.w3c.dom.Node unless defined? Node +java_import javax.xml.parsers.DocumentBuilder unless defined? DocumentBuilder +java_import javax.xml.parsers.DocumentBuilderFactory unless defined? DocumentBuilderFactory +java_import java.io.StringReader unless defined? StringReader +java_import org.xml.sax.InputSource unless defined? InputSource +java_import org.xml.sax.Attributes unless defined? Attributes +java_import org.w3c.dom.Node unless defined? Node # = XmlMini JRuby JDOM implementation module ActiveSupport |