From dfc9b10c5cc4b20e8ad8eb3eabdce3c4ee6d273e Mon Sep 17 00:00:00 2001 From: rjung Date: Tue, 8 Mar 2011 22:27:45 +0000 Subject: [PATCH] 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 --- java/org/apache/catalina/core/StandardContext.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} -- 2.11.0