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 2008/11/13 00:49:06 UTC

svn commit: r713567 - /myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/context/ExternalContext.java

Author: slessard
Date: Wed Nov 12 15:49:06 2008
New Revision: 713567

URL: http://svn.apache.org/viewvc?rev=713567&view=rev
Log:
MYFACES-1932 - Assuming the method should throw an UnsupportedOperationException in the abstract class, I'll twist the EG into making it so if needed.

Modified:
    myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/context/ExternalContext.java

Modified: myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/context/ExternalContext.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/context/ExternalContext.java?rev=713567&r1=713566&r2=713567&view=diff
==============================================================================
--- myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/context/ExternalContext.java (original)
+++ myfaces/core/branches/2_0_0/api/src/main/java/javax/faces/context/ExternalContext.java Wed Nov 12 15:49:06 2008
@@ -43,8 +43,7 @@
      */
     public void addResponseCookie(String name, String value, Map<String, Object> properties)
     {
-        // TODO: JSF 2.0 #24
-        // VALIDATE: Should this be asbtract? Check with the EG
+        throw new UnsupportedOperationException();
     }
 
     public abstract void dispatch(String path) throws java.io.IOException;