You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sl...@apache.org on 2009/04/09 01:29:55 UTC

svn commit: r763461 - in /myfaces/core/branches/2_0_0: api/src/main/java/javax/faces/context/FacesContext.java impl/src/main/java/org/apache/myfaces/context/servlet/FacesContextImpl.java

Author: slessard
Date: Wed Apr  8 23:29:55 2009
New Revision: 763461

URL: http://svn.apache.org/viewvc?rev=763461&view=rev
Log:
TODO cleanup

Modified:
    myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/context/FacesContext.java
    myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/context/servlet/FacesContextImpl.java

Modified: myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/context/FacesContext.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/context/FacesContext.java?rev=763461&r1=763460&r2=763461&view=diff
==============================================================================
--- myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/context/FacesContext.java (original)
+++ myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/context/FacesContext.java Wed Apr  8 23:29:55 2009
@@ -139,7 +139,6 @@
      */
     public ExceptionHandler getExceptionHandler()
     {
-        // TODO: IMPLEMENT IMPL
         throw new UnsupportedOperationException();
     }
 
@@ -167,7 +166,6 @@
      */
     public List<FacesMessage> getMessageList()
     {
-        // TODO: IMPLEMENT IMPL
         throw new UnsupportedOperationException();
     }
     
@@ -180,7 +178,6 @@
      */
     public List<FacesMessage> getMessageList(String clientId)
     {
-        // TODO: IMPLEMENT IMPL
         throw new UnsupportedOperationException();
     }
 
@@ -204,7 +201,6 @@
      */
     public PartialViewContext getPartialViewContext()
     {
-        // TODO: IMPLEMENT IMPL
         throw new UnsupportedOperationException();
     }
 
@@ -300,7 +296,6 @@
      */
     public void setExceptionHandler(ExceptionHandler exceptionHandler)
     {
-        // TODO: IMPLEMENT IMPL
         throw new UnsupportedOperationException();
     }
     

Modified: myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/context/servlet/FacesContextImpl.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/context/servlet/FacesContextImpl.java?rev=763461&r1=763460&r2=763461&view=diff
==============================================================================
--- myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/context/servlet/FacesContextImpl.java (original)
+++ myfaces/core/branches/2_0_0/impl/src/main/java/org/apache/myfaces/context/servlet/FacesContextImpl.java Wed Apr  8 23:29:55 2009
@@ -142,7 +142,7 @@
     @Override
     public ExceptionHandler getExceptionHandler()
     {
-        // TODO: JSF 2.0, add impl
+        // TODO: IMPLEMENT HERE
         return super.getExceptionHandler();
     }
     
@@ -165,14 +165,14 @@
     @Override
     public List<FacesMessage> getMessageList()
     {
-        // TODO: JSF 2.0, add impl
+        // TODO: IMPLEMENT HERE
         return super.getMessageList();
     }
 
     @Override
     public List<FacesMessage> getMessageList(String clientId)
     {
-        // TODO: JSF 2.0, add impl
+        // TODO: IMPLEMENT HERE
         return super.getMessageList(clientId);
     }