You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2009/09/30 11:15:37 UTC

svn commit: r820223 - /myfaces/tobago/trunk/tobago-jsf-compat/src/main/java/org/apache/myfaces/tobago/component/MethodBindingToMethodExpression.java

Author: lofwyr
Date: Wed Sep 30 09:15:37 2009
New Revision: 820223

URL: http://svn.apache.org/viewvc?rev=820223&view=rev
Log:
TOBAGO-658: JSF 1.2 Compatibility
- default constuctor seems to has be public

Modified:
    myfaces/tobago/trunk/tobago-jsf-compat/src/main/java/org/apache/myfaces/tobago/component/MethodBindingToMethodExpression.java

Modified: myfaces/tobago/trunk/tobago-jsf-compat/src/main/java/org/apache/myfaces/tobago/component/MethodBindingToMethodExpression.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-jsf-compat/src/main/java/org/apache/myfaces/tobago/component/MethodBindingToMethodExpression.java?rev=820223&r1=820222&r2=820223&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-jsf-compat/src/main/java/org/apache/myfaces/tobago/component/MethodBindingToMethodExpression.java (original)
+++ myfaces/tobago/trunk/tobago-jsf-compat/src/main/java/org/apache/myfaces/tobago/component/MethodBindingToMethodExpression.java Wed Sep 30 09:15:37 2009
@@ -17,16 +17,16 @@
  * limitations under the License.
  */
 
+import javax.el.ELContext;
+import javax.el.ELException;
 import javax.el.MethodExpression;
 import javax.el.MethodInfo;
-import javax.el.ELContext;
 import javax.el.MethodNotFoundException;
-import javax.el.ELException;
+import javax.faces.FacesException;
 import javax.faces.component.StateHolder;
-import javax.faces.el.MethodBinding;
-import javax.faces.el.EvaluationException;
 import javax.faces.context.FacesContext;
-import javax.faces.FacesException;
+import javax.faces.el.EvaluationException;
+import javax.faces.el.MethodBinding;
 
 @SuppressWarnings("deprecation")
 public class MethodBindingToMethodExpression extends MethodExpression implements StateHolder {
@@ -39,7 +39,7 @@
   /**
    * No-arg constructor used during restoreState
    */
-  protected MethodBindingToMethodExpression() {
+  public MethodBindingToMethodExpression() {
   }
 
   /**