svn commit: r902230 - /ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilXml.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r902230 - /ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilXml.java

lektran
Author: lektran
Date: Fri Jan 22 19:11:38 2010
New Revision: 902230

URL: http://svn.apache.org/viewvc?rev=902230&view=rev
Log:
Removed deprecated method UtilXml.readXmlDocument(InputStream), concludes org.ofbiz.base deprecation cleanup

Modified:
    ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilXml.java

Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilXml.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilXml.java?rev=902230&r1=902229&r2=902230&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilXml.java (original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilXml.java Fri Jan 22 19:11:38 2010
@@ -349,15 +349,6 @@
         return document;
     }
 
-    /**
-     * @deprecated
-     */
-    @Deprecated
-    public static Document readXmlDocument(InputStream is)
-            throws SAXException, ParserConfigurationException, java.io.IOException {
-        return readXmlDocument(is, true, null);
-    }
-
     public static Document readXmlDocument(InputStream is, String docDescription)
             throws SAXException, ParserConfigurationException, java.io.IOException {
         return readXmlDocument(is, true, docDescription);