You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by tv...@apache.org on 2009/08/04 22:49:44 UTC

svn commit: r800964 - /incubator/pivot/trunk/web/src/org/apache/pivot/web/server/QueryServlet.java

Author: tvolkert
Date: Tue Aug  4 20:49:44 2009
New Revision: 800964

URL: http://svn.apache.org/viewvc?rev=800964&view=rev
Log:
Fix small bug in QueryServlet related to fix to PIVOT-172

Modified:
    incubator/pivot/trunk/web/src/org/apache/pivot/web/server/QueryServlet.java

Modified: incubator/pivot/trunk/web/src/org/apache/pivot/web/server/QueryServlet.java
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/web/src/org/apache/pivot/web/server/QueryServlet.java?rev=800964&r1=800963&r2=800964&view=diff
==============================================================================
--- incubator/pivot/trunk/web/src/org/apache/pivot/web/server/QueryServlet.java (original)
+++ incubator/pivot/trunk/web/src/org/apache/pivot/web/server/QueryServlet.java Tue Aug  4 20:49:44 2009
@@ -148,7 +148,7 @@
         this.authenticationRequired = authenticationRequired;
 
         if (!authenticationRequired) {
-            credentials = null;
+            credentials.remove();
         }
     }