No need to revert.
Sure, I will help.
-Adrian
On 5/15/2012 10:09 AM, Jacopo Cappellato wrote:
Ok, got it thanks; do you want me to revert?
Jacopo
PS: I am trying to rewrite your latest fix for field-to-result to release
branch 11.04; may I use your help if I will fail?
On May 15, 2012, at 10:59 AM, Adrian Crum wrote:
Jacopo,
I plan to backport the entire Mini-language overhaul when it is finished. So,
there is no need to bother with it now.
-Adrian
On 5/15/2012 6:07 AM, [email protected] wrote:
Author: jacopoc
Date: Tue May 15 05:07:15 2012
New Revision: 1338535
URL: http://svn.apache.org/viewvc?rev=1338535&view=rev
Log:
Applied fix from trunk for revision: 1338224
===
Fix for wrong operation name returned by the FieldToResult.toString(...) method.
Modified:
ofbiz/branches/release12.04/ (props changed)
ofbiz/branches/release12.04/framework/minilang/src/org/ofbiz/minilang/method/serviceops/FieldToResult.java
Propchange: ofbiz/branches/release12.04/
------------------------------------------------------------------------------
Merged /ofbiz/trunk:r1338224
Modified:
ofbiz/branches/release12.04/framework/minilang/src/org/ofbiz/minilang/method/serviceops/FieldToResult.java
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release12.04/framework/minilang/src/org/ofbiz/minilang/method/serviceops/FieldToResult.java?rev=1338535&r1=1338534&r2=1338535&view=diff
==============================================================================
---
ofbiz/branches/release12.04/framework/minilang/src/org/ofbiz/minilang/method/serviceops/FieldToResult.java
(original)
+++
ofbiz/branches/release12.04/framework/minilang/src/org/ofbiz/minilang/method/serviceops/FieldToResult.java
Tue May 15 05:07:15 2012
@@ -75,7 +75,7 @@ public final class FieldToResult extends
@Override
public String toString() {
- StringBuilder sb = new StringBuilder("<now ");
+ StringBuilder sb = new StringBuilder("<field-to-result ");
if (!this.fieldFma.isEmpty()) {
sb.append("field=\"").append(this.fieldFma).append("\" ");
}