Author: markt
Date: Fri Feb 20 21:05:42 2015
New Revision: 1661223
URL: http://svn.apache.org/r1661223
Log:
Fix typo
Modified:
tomcat/trunk/java/org/apache/coyote/http11/upgrade/LocalStrings.properties
tomcat/trunk/java/org/apache/coyote/http11/upgrade/UpgradeServletOutputStream.java
Modified:
tomcat/trunk/java/org/apache/coyote/http11/upgrade/LocalStrings.properties
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/upgrade/LocalStrings.properties?rev=1661223&r1=1661222&r2=1661223&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/http11/upgrade/LocalStrings.properties
(original)
+++ tomcat/trunk/java/org/apache/coyote/http11/upgrade/LocalStrings.properties
Fri Feb 20 21:05:42 2015
@@ -31,5 +31,5 @@ upgrade.sos.canWrite.ise=It is illegal t
upgrade.sos.onErrorFail=onError processing for the registered WriteListener
triggered this further error which was swallowed
upgrade.sos.writeListener.null=It is illegal to pass null to setWriteListener()
upgrade.sos.writeListener.set=It is illegal to call setWriteListener() more
than once for the same upgraded connection
-upgrade.sis.write.ise=It is illegal to call any of the write() methods in
non-blocking mode without first checking that there is space available by
calling isReady()
+upgrade.sos.write.ise=It is illegal to call any of the write() methods in
non-blocking mode without first checking that there is space available by
calling isReady()
Modified:
tomcat/trunk/java/org/apache/coyote/http11/upgrade/UpgradeServletOutputStream.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/upgrade/UpgradeServletOutputStream.java?rev=1661223&r1=1661222&r2=1661223&view=diff
==============================================================================
---
tomcat/trunk/java/org/apache/coyote/http11/upgrade/UpgradeServletOutputStream.java
(original)
+++
tomcat/trunk/java/org/apache/coyote/http11/upgrade/UpgradeServletOutputStream.java
Fri Feb 20 21:05:42 2015
@@ -180,7 +180,7 @@ public class UpgradeServletOutputStream
private void preWriteChecks() {
if (listener != null && !socketWrapper.canWrite()) {
- throw new
IllegalStateException(sm.getString("upgrade.sis.write.ise"));
+ throw new
IllegalStateException(sm.getString("upgrade.sos.write.ise"));
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]