S3Uploader.java: Remove redundant null check

This commit is contained in:
Bruno Chevalier 2020-08-31 13:50:23 +02:00
parent 1dccb62d10
commit 9b89eecab5

View file

@ -21,7 +21,7 @@ public class S3Uploader {
if (accessKeyId == null || accessKeyId.isEmpty()
|| secretKeyId == null || secretKeyId.isEmpty()
|| existingBucketName == null || existingBucketName.isEmpty()) {
|| existingBucketName.isEmpty()) {
logger.info("Aborting json log sync.");
return false;
}