diff options
author | Arun Agrawal <arun@fromjaipur.com> | 2011-05-24 10:06:09 +0530 |
---|---|---|
committer | Arun Agrawal <arun@fromjaipur.com> | 2011-05-24 10:07:05 +0530 |
commit | 89da0d3ab9ac705c61e4e9b718268b2dab1df393 (patch) | |
tree | a1d4ce2dbe2d35704e96c78549e995a09bcac7d0 /activesupport/lib | |
parent | 9dabbd0cfff95364d7d9e582b2a69fca2342c2b2 (diff) | |
download | rails-89da0d3ab9ac705c61e4e9b718268b2dab1df393.tar.gz rails-89da0d3ab9ac705c61e4e9b718268b2dab1df393.tar.bz2 rails-89da0d3ab9ac705c61e4e9b718268b2dab1df393.zip |
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 |