aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorArun Agrawal <arun@fromjaipur.com>2011-05-24 10:06:09 +0530
committerArun Agrawal <arun@fromjaipur.com>2011-05-24 10:07:05 +0530
commit89da0d3ab9ac705c61e4e9b718268b2dab1df393 (patch)
treea1d4ce2dbe2d35704e96c78549e995a09bcac7d0 /activesupport
parent9dabbd0cfff95364d7d9e582b2a69fca2342c2b2 (diff)
downloadrails-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')
-rw-r--r--activesupport/lib/active_support/xml_mini/jdom.rb12
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