Start version 2.5

* Upgrade some dependencies; fix compatibilities
This commit is contained in:
Artem Bilan
2021-04-09 14:54:13 -04:00
parent 3a7222f456
commit 57ccd1fb5b
4 changed files with 25 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2016-2019 the original author or authors.
* Copyright 2016-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,4 +43,15 @@ public class S3PersistentAcceptOnceFileListFilter extends AbstractPersistentAcce
return (file != null) ? file.getKey() : null;
}
/**
* Always return false since no directory notion in S3.
* @param file the {@link S3ObjectSummary}
* @return always false: S3 does not have a notion of directory
* @since 2.5
*/
@Override
protected boolean isDirectory(S3ObjectSummary file) {
return false;
}
}