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: [email protected]
For additional commands, e-mail: [email protected]