svn commit: r902225 - /ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/XslTransform.java

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

svn commit: r902225 - /ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/XslTransform.java

lektran
Author: lektran
Date: Fri Jan 22 19:10:20 2010
New Revision: 902225

URL: http://svn.apache.org/viewvc?rev=902225&view=rev
Log:
Added missing deprecated annotations.

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

Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/XslTransform.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/XslTransform.java?rev=902225&r1=902224&r2=902225&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/XslTransform.java (original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/XslTransform.java Fri Jan 22 19:10:20 2010
@@ -95,9 +95,10 @@
     }
 
     /*
-     *  it does not look like the rest of this file is working or used..........better set it to depreciated
+     *  it does not look like the rest of this file is working or used..........better set it to deprecated
      *  @deprecated
      */
+    @Deprecated
     public static Document transform(Map<String, Object> context, Map<String, Object> params)
         throws GeneralException, IOException, TransformerConfigurationException, TransformerException {
         Document outputDocument = null;
@@ -144,9 +145,10 @@
     }
 
     /*
-     *  it does not look like the rest of this file is working or used..........better set it to depreciated
+     *  it does not look like the rest of this file is working or used..........better set it to deprecated
      *  @deprecated
      */
+    @Deprecated
     private static Source getSource(Document inputDocument, String inputUrl, String inputString) throws GeneralException, IOException {
         Source source = null;
         if (inputDocument != null) {