From: rjung Date: Thu, 28 Oct 2010 17:13:25 +0000 (+0000) Subject: Reduce visibility. All those are only needed X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=eb1b3638f69064ff7bc4c8a678adc7e31b9ecdc1;p=tomcat7.0 Reduce visibility. All those are only needed by the Queue implementation, not by the consumer of the collection. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1028389 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/jasper/util/Entry.java b/java/org/apache/jasper/util/Entry.java index 31bb71b87..9a8ab030c 100644 --- a/java/org/apache/jasper/util/Entry.java +++ b/java/org/apache/jasper/util/Entry.java @@ -41,15 +41,15 @@ public class Entry { this.previous = previous; } - public T getContent() { + protected T getContent() { return content; } - public Entry getPrevious() { + protected Entry getPrevious() { return previous; } - public Entry getNext() { + protected Entry getNext() { return next; }