Condition 'DEFAULT_MAX_SIZE != -1' is always 'true'

pull/148/head
runphp 3 years ago committed by Gitee
parent 27d46fc0a4
commit a00482d5d7
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

@ -123,7 +123,7 @@ public class FileUploadUtils
throws FileSizeLimitExceededException, InvalidExtensionException
{
long size = file.getSize();
if (DEFAULT_MAX_SIZE != -1 && size > DEFAULT_MAX_SIZE)
if (size > DEFAULT_MAX_SIZE)
{
throw new FileSizeLimitExceededException(DEFAULT_MAX_SIZE / 1024 / 1024);
}

Loading…
Cancel
Save