GUACAMOLE-1298: Merge declare default request size limit constant as static.

This commit is contained in:
Virtually Nick
2021-02-26 19:11:49 -05:00
committed by GitHub

View File

@@ -55,7 +55,7 @@ public class RequestSizeFilter implements ContainerRequestFilter {
* The default maximum number of bytes to accept within the entity body of * The default maximum number of bytes to accept within the entity body of
* any particular REST request. * any particular REST request.
*/ */
private final long DEFAULT_MAX_REQUEST_SIZE = 2097152; private static final long DEFAULT_MAX_REQUEST_SIZE = 2097152;
/** /**
* The maximum number of bytes to accept within the entity body of any * The maximum number of bytes to accept within the entity body of any