ConfigurationMatches should fit as it is implemented in S3

This commit is contained in:
Julian Raufelder 2021-04-29 17:06:33 +02:00 committed by Manuel Jenny
parent 3894df1587
commit 68203fb88a
No known key found for this signature in database
GPG Key ID: 1C80FE62B2BEAA18

View File

@ -77,7 +77,6 @@ public class S3Cloud implements Cloud {
}
private boolean configurationMatches(S3Cloud cloud) {
//FIXME: figure out when it is necessary to create a new cloud
return s3Bucket.equals(cloud.s3Bucket) && s3Endpoint.equals(cloud.s3Endpoint) && s3Region.equals(cloud.s3Region);
}