mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
S3Uploader.java: Remove redundant null check
This commit is contained in:
parent
1dccb62d10
commit
9b89eecab5
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue