Author: markt Date: Mon Mar 11 11:49:28 2013 New Revision: 1455102 URL: http://svn.apache.org/r1455102 Log: Update method name in comment
Modified: tomcat/trunk/java/org/apache/coyote/http11/upgrade/AbstractServletOutputStream.java Modified: tomcat/trunk/java/org/apache/coyote/http11/upgrade/AbstractServletOutputStream.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/upgrade/AbstractServletOutputStream.java?rev=1455102&r1=1455101&r2=1455102&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/coyote/http11/upgrade/AbstractServletOutputStream.java (original) +++ tomcat/trunk/java/org/apache/coyote/http11/upgrade/AbstractServletOutputStream.java Mon Mar 11 11:49:28 2013 @@ -44,7 +44,7 @@ public abstract class AbstractServletOut sm.getString("upgrade.sos.canWrite.is")); } - // Make sure canWrite() and onWritePossible() have a consistent view of + // Make sure isReady() and onWritePossible() have a consistent view of // buffer and fireListener when determining if the listener should fire synchronized (fireListenerLock) { boolean result = (buffer == null); @@ -128,7 +128,7 @@ public abstract class AbstractServletOut } catch (IOException ioe) { throw new RuntimeException(ioe); } - // Make sure canWrite() and onWritePossible() have a consistent view of + // Make sure isReady() and onWritePossible() have a consistent view of // buffer and fireListener when determining if the listener should fire boolean fire = false; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org