svn commit: r804896 - /ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/conditional/While.java

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

svn commit: r804896 - /ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/conditional/While.java

jleroux@apache.org
Author: jleroux
Date: Mon Aug 17 08:23:25 2009
New Revision: 804896

URL: http://svn.apache.org/viewvc?rev=804896&view=rev
Log:
Same error than in r763199 (and I knew that, sorry)

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

Modified: ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/conditional/While.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/conditional/While.java?rev=804896&r1=804895&r2=804896&view=diff
==============================================================================
--- ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/conditional/While.java (original)
+++ ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/conditional/While.java Mon Aug 17 08:23:25 2009
@@ -35,7 +35,7 @@
 public class While extends MethodOperation {
     public static final class WhileFactory implements Factory<While> {
         public While createMethodOperation(Element element, SimpleMethod simpleMethod) {
-            return new while (element, simpleMethod);
+            return new While(element, simpleMethod);
         }
 
         public String getName() {
@@ -47,7 +47,7 @@
 
     List<MethodOperation> thenSubOps = FastList.newInstance();
 
-    public while (Element element, SimpleMethod simpleMethod) {
+    public While(Element element, SimpleMethod simpleMethod) {
         super(element, simpleMethod);
 
         Element conditionElement = UtilXml.firstChildElement(element, "condition");