Author: markt
Date: Wed May 29 17:26:10 2013
New Revision: 1487556

URL: http://svn.apache.org/r1487556
Log:
Fix logic error

Modified:
    tomcat/trunk/java/org/apache/coyote/Response.java

Modified: tomcat/trunk/java/org/apache/coyote/Response.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/Response.java?rev=1487556&r1=1487555&r2=1487556&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/Response.java (original)
+++ tomcat/trunk/java/org/apache/coyote/Response.java Wed May 29 17:26:10 2013
@@ -586,7 +586,7 @@ public final class Response {
         synchronized (fireListenerLock) {
             if (fireListener) {
                 // isReady() has already returned false
-                return true;
+                return false;
             }
             action(ActionCode.NB_WRITE_INTEREST, isReady);
             fireListener = !isReady.get();



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to