Reduce visibility of field with public getter
authorrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 8 Mar 2011 22:27:45 +0000 (22:27 +0000)
committerrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 8 Mar 2011 22:27:45 +0000 (22:27 +0000)
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

index f74bb75..a6bcc04 100644 (file)
@@ -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
+}