Author: markt
Date: Tue Feb 21 21:14:33 2012
New Revision: 1292031

URL: http://svn.apache.org/viewvc?rev=1292031&view=rev
Log:
Reduce visibility

Modified:
    tomcat/trunk/java/org/apache/catalina/websocket/WsOutbound.java

Modified: tomcat/trunk/java/org/apache/catalina/websocket/WsOutbound.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/websocket/WsOutbound.java?rev=1292031&r1=1292030&r2=1292031&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/websocket/WsOutbound.java (original)
+++ tomcat/trunk/java/org/apache/catalina/websocket/WsOutbound.java Tue Feb 21 
21:14:33 2012
@@ -167,7 +167,7 @@ public class WsOutbound {
      *                      WebSocket message?
      * @throws IOException
      */
-    protected void doWriteBytes(ByteBuffer buffer, boolean finalFragment)
+    private void doWriteBytes(ByteBuffer buffer, boolean finalFragment)
             throws IOException {
 
         // Work out the first byte
@@ -220,7 +220,7 @@ public class WsOutbound {
     }
 
 
-    protected void doWriteText(CharBuffer buffer, boolean finalFragment)
+    private void doWriteText(CharBuffer buffer, boolean finalFragment)
             throws IOException {
         do {
             B2CConverter.UTF_8.newEncoder().encode(buffer, bb, true);



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

Reply via email to