Show
Ignore:
Timestamp:
01/04/08 20:20:23 (1 year ago)
Author:
sfermigier
Message:

Forward port of last cosmit.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • org.nuxeo.ecm.platform/trunk/nuxeo-platform-ui-web/src/main/java/org/nuxeo/ecm/platform/ui/web/binding/MetaMethodExpression.java

    r19474 r28492  
    113113            res = originalMethodExpression.invoke(context, params); 
    114114            if (res instanceof String) { 
    115                 MethodExpression newMeth; 
    116115                String expression = (String) res; 
    117116                if (ComponentTagUtils.isValueReference(expression)) { 
     
    119118                    Application app = faces.getApplication(); 
    120119                    ExpressionFactory factory = app.getExpressionFactory(); 
    121                     newMeth = factory.createMethodExpression(context, 
    122                             expression, Object.class, new Class[0]); 
     120                    MethodExpression newMeth = factory.createMethodExpression( 
     121                            context, expression, Object.class, new Class[0]); 
    123122                    try { 
    124123                        res = newMeth.invoke(context, null);