You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2010/10/28 19:13:26 UTC

svn commit: r1028389 - /tomcat/trunk/java/org/apache/jasper/util/Entry.java

Author: rjung
Date: Thu Oct 28 17:13:25 2010
New Revision: 1028389

URL: http://svn.apache.org/viewvc?rev=1028389&view=rev
Log:
Reduce visibility. All those are only needed
by the Queue implementation, not by the consumer
of the collection.

Modified:
    tomcat/trunk/java/org/apache/jasper/util/Entry.java

Modified: tomcat/trunk/java/org/apache/jasper/util/Entry.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/util/Entry.java?rev=1028389&r1=1028388&r2=1028389&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/jasper/util/Entry.java (original)
+++ tomcat/trunk/java/org/apache/jasper/util/Entry.java Thu Oct 28 17:13:25 2010
@@ -41,15 +41,15 @@ public class Entry<T> {
         this.previous = previous;
     }
 
-    public T getContent() {
+    protected T getContent() {
         return content;
     }
 
-    public Entry<T> getPrevious() {
+    protected Entry<T> getPrevious() {
         return previous;
     }
 
-    public Entry<T> getNext() {
+    protected Entry<T> getNext() {
         return next;
     }
 



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