Author: markt
Date: Mon May 23 12:57:31 2016
New Revision: 1745180

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

Modified:
    tomcat/trunk/java/org/apache/coyote/http2/Stream.java

Modified: tomcat/trunk/java/org/apache/coyote/http2/Stream.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http2/Stream.java?rev=1745180&r1=1745179&r2=1745180&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/http2/Stream.java (original)
+++ tomcat/trunk/java/org/apache/coyote/http2/Stream.java Mon May 23 12:57:31 
2016
@@ -89,7 +89,7 @@ public class Stream extends AbstractStre
     }
 
 
-    public void rePrioritise(AbstractStream parent, boolean exclusive, int 
weight) {
+    void rePrioritise(AbstractStream parent, boolean exclusive, int weight) {
         if (log.isDebugEnabled()) {
             log.debug(sm.getString("stream.reprioritisation.debug",
                     getConnectionId(), getIdentifier(), 
Boolean.toString(exclusive),
@@ -141,7 +141,7 @@ public class Stream extends AbstractStre
 
 
     @Override
-    public synchronized void incrementWindowSize(int windowSizeIncrement) 
throws Http2Exception {
+    protected synchronized void incrementWindowSize(int windowSizeIncrement) 
throws Http2Exception {
         // If this is zero then any thread that has been trying to write for
         // this stream will be waiting. Notify that thread it can continue. Use
         // notify all even though only one thread is waiting to be on the safe



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

Reply via email to