From bdf6f8ad168d6878dda8c7d9076ad00281a9fce4 Mon Sep 17 00:00:00 2001 From: Philipp Hanslovsky Date: Fri, 20 Oct 2023 19:14:35 -0400 Subject: [PATCH] Use createBucket instead of bucketName for documenting bucket creation The documentation used `bucketName` to describe the behavior of the `createBucket` parameter. --- .../org/janelia/saalfeldlab/n5/s3/AmazonS3KeyValueAccess.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/janelia/saalfeldlab/n5/s3/AmazonS3KeyValueAccess.java b/src/main/java/org/janelia/saalfeldlab/n5/s3/AmazonS3KeyValueAccess.java index 4e7d8a7..e319a90 100644 --- a/src/main/java/org/janelia/saalfeldlab/n5/s3/AmazonS3KeyValueAccess.java +++ b/src/main/java/org/janelia/saalfeldlab/n5/s3/AmazonS3KeyValueAccess.java @@ -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