You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by le...@apache.org on 2012/12/08 13:02:15 UTC

svn commit: r1418645 - /ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/MethodOperation.java

Author: lektran
Date: Sat Dec  8 12:02:14 2012
New Revision: 1418645

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

Modified:
    ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/MethodOperation.java

Modified: ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/MethodOperation.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/MethodOperation.java?rev=1418645&r1=1418644&r2=1418645&view=diff
==============================================================================
--- ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/MethodOperation.java (original)
+++ ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/MethodOperation.java Sat Dec  8 12:02:14 2012
@@ -50,6 +50,7 @@ public abstract class MethodOperation ex
     /** Create a string representation of the operation, using the current context.
      * @deprecated No replacement.
      */
+    @Deprecated
     public String expandedString(MethodContext methodContext) {
         return FlexibleStringExpander.expandString(toString(), methodContext.getEnvMap());
     }
@@ -57,6 +58,7 @@ public abstract class MethodOperation ex
     /** Create a string representation of the operation - similar to the original XML.
      * @deprecated Use {@link #toString()}.
      */
+    @Deprecated
     public String rawString() {
         return toString();
     }