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 2013/02/13 01:51:09 UTC

svn commit: r1445443 - /myfaces/core/branches/2.2.x/impl/src/main/java/org/apache/myfaces/context/servlet/ServletExternalContextImpl.java

Author: lu4242
Date: Wed Feb 13 00:51:09 2013
New Revision: 1445443

URL: http://svn.apache.org/r1445443
Log:
MYFACES-3688 Implement ExternalContext.getSessionId() (Thanks to Paul Nicolucci for check the correctness of the code)

Modified:
    myfaces/core/branches/2.2.x/impl/src/main/java/org/apache/myfaces/context/servlet/ServletExternalContextImpl.java

Modified: myfaces/core/branches/2.2.x/impl/src/main/java/org/apache/myfaces/context/servlet/ServletExternalContextImpl.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.2.x/impl/src/main/java/org/apache/myfaces/context/servlet/ServletExternalContextImpl.java?rev=1445443&r1=1445442&r2=1445443&view=diff
==============================================================================
--- myfaces/core/branches/2.2.x/impl/src/main/java/org/apache/myfaces/context/servlet/ServletExternalContextImpl.java (original)
+++ myfaces/core/branches/2.2.x/impl/src/main/java/org/apache/myfaces/context/servlet/ServletExternalContextImpl.java Wed Feb 13 00:51:09 2013
@@ -159,7 +159,7 @@ public final class ServletExternalContex
         }
         else
         {
-            return null;
+            return "";
         }
     }