From: rjung Date: Tue, 8 Mar 2011 22:27:45 +0000 (+0000) Subject: Reduce visibility of field with public getter X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=dfc9b10c5cc4b20e8ad8eb3eabdce3c4ee6d273e;p=tomcat7.0 Reduce visibility of field with public getter and setter. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1079584 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/catalina/core/StandardContext.java b/java/org/apache/catalina/core/StandardContext.java index f74bb75bd..a6bcc0441 100644 --- a/java/org/apache/catalina/core/StandardContext.java +++ b/java/org/apache/catalina/core/StandardContext.java @@ -200,7 +200,7 @@ public class StandardContext extends ContainerBase * Control whether remaining request data will be read * (swallowed) even if the request violates a data size constraint. */ - public boolean swallowAbortedUploads = true; + private boolean swallowAbortedUploads = true; /** * The alternate deployment descriptor name. @@ -6468,4 +6468,4 @@ public class StandardContext extends ContainerBase return false; } -} \ No newline at end of file +}