Skip to content

Commit

Permalink
Use createBucket instead of bucketName for documenting bucket creation
Browse files Browse the repository at this point in the history
The documentation used `bucketName` to describe the behavior of the `createBucket` parameter.
  • Loading branch information
hanslovsky authored Oct 20, 2023
1 parent ef05d1e commit bdf6f8a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ public class AmazonS3KeyValueAccess implements KeyValueAccess {
/**
* Opens an {@link AmazonS3KeyValueAccess} using an {@link AmazonS3} client and a given bucket name.
*
* If the bucket does not exist and {@code bucketName==true}, the bucket will be created.
* If the bucket does not exist and {@code bucketName==false}, the bucket will not be
* If the bucket does not exist and {@code createBucket==true}, the bucket will be created.
* If the bucket does not exist and {@code createBucket==false}, the bucket will not be
* created and all subsequent attempts to read attributes, groups, or datasets will fail.
*
* @param s3 the s3 instance
Expand Down

0 comments on commit bdf6f8a

Please sign in to comment.