You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2009/08/28 23:00:04 UTC

svn commit: r809027 - /myfaces/core/trunk/api/src/main/java/javax/faces/view/facelets/ComponentHandler.java

Author: lu4242
Date: Fri Aug 28 21:00:04 2009
New Revision: 809027

URL: http://svn.apache.org/viewvc?rev=809027&view=rev
Log:
remove final keyword on isNew method

Modified:
    myfaces/core/trunk/api/src/main/java/javax/faces/view/facelets/ComponentHandler.java

Modified: myfaces/core/trunk/api/src/main/java/javax/faces/view/facelets/ComponentHandler.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/src/main/java/javax/faces/view/facelets/ComponentHandler.java?rev=809027&r1=809026&r2=809027&view=diff
==============================================================================
--- myfaces/core/trunk/api/src/main/java/javax/faces/view/facelets/ComponentHandler.java (original)
+++ myfaces/core/trunk/api/src/main/java/javax/faces/view/facelets/ComponentHandler.java Fri Aug 28 21:00:04 2009
@@ -50,7 +50,7 @@
         return config;
     }
 
-    public static final boolean isNew(UIComponent component)
+    public static boolean isNew(UIComponent component)
     {
         // -= Leonardo Uribe =- It seems org.apache.myfaces.view.facelets.tag.jsf.ComponentSupport.isNew(UIComponent)
         // has been moved to this location.