Skip to content

Commit 3e57ae7

Browse files
committed
Fix javadoc indent in Blob and Storage
1 parent 194d239 commit 3e57ae7

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

gcloud-java-storage/src/main/java/com/google/gcloud/storage/Blob.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ public BlobWriteChannel writer(BlobTargetOption... options) {
248248
* want to require users to explicitly log in.
249249
*
250250
* @param duration time until the signed URL expires, expressed in {@code unit}. The finer
251-
* granularity supported is 1 second, finer granularities will be truncated
251+
* granularity supported is 1 second, finer granularities will be truncated
252252
* @param unit time unit of the {@code duration} parameter
253253
* @param options optional URL signing options
254254
* @return a signed URL for this bucket and the specified options
@@ -272,7 +272,7 @@ public Storage storage() {
272272
* @param storage the storage service used to issue the request
273273
* @param infos the blobs to get
274274
* @return an immutable list of {@code Blob} objects. If a blob does not exist or access to it has
275-
* been denied the corresponding item in the list is {@code null}.
275+
* been denied the corresponding item in the list is {@code null}.
276276
* @throws StorageException upon failure
277277
*/
278278
public static List<Blob> get(final Storage storage, BlobInfo... infos) {
@@ -297,7 +297,7 @@ public Blob apply(BlobInfo f) {
297297
* @param storage the storage service used to issue the request
298298
* @param infos the blobs to update
299299
* @return an immutable list of {@code Blob} objects. If a blob does not exist or access to it has
300-
* been denied the corresponding item in the list is {@code null}.
300+
* been denied the corresponding item in the list is {@code null}.
301301
* @throws StorageException upon failure
302302
*/
303303
public static List<Blob> update(final Storage storage, BlobInfo... infos) {
@@ -322,8 +322,8 @@ public Blob apply(BlobInfo f) {
322322
* @param storage the storage service used to issue the request
323323
* @param infos the blobs to delete
324324
* @return an immutable list of booleans. If a blob has been deleted the corresponding item in the
325-
* list is {@code true}. If deletion failed or access to the resource was denied the item is
326-
* {@code false}.
325+
* list is {@code true}. If deletion failed or access to the resource was denied the item is
326+
* {@code false}.
327327
* @throws StorageException upon failure
328328
*/
329329
public static List<Boolean> delete(Storage storage, BlobInfo... infos) {

gcloud-java-storage/src/main/java/com/google/gcloud/storage/Storage.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ public static Builder builder() {
649649
*
650650
* @param blobInfo the blob associated with the signed URL
651651
* @param duration time until the signed URL expires, expressed in {@code unit}. The finer
652-
* granularity supported is 1 second, finer granularities will be truncated
652+
* granularity supported is 1 second, finer granularities will be truncated
653653
* @param unit time unit of the {@code duration} parameter
654654
* @param options optional URL signing options
655655
* @see <a href="https://cloud.google.com/storage/docs/access-control#Signed-URLs">Signed-URLs</a>
@@ -661,7 +661,7 @@ public static Builder builder() {
661661
*
662662
* @param blobInfos blobs to get
663663
* @return an immutable list of {@code BlobInfo} objects. If a blob does not exist or access to it
664-
* has been denied the corresponding item in the list is {@code null}.
664+
* has been denied the corresponding item in the list is {@code null}.
665665
* @throws StorageException upon failure
666666
*/
667667
List<BlobInfo> get(BlobInfo... blobInfos);
@@ -671,7 +671,7 @@ public static Builder builder() {
671671
*
672672
* @param blobInfos blobs to update
673673
* @return an immutable list of {@code BlobInfo} objects. If a blob does not exist or access to it
674-
* has been denied the corresponding item in the list is {@code null}.
674+
* has been denied the corresponding item in the list is {@code null}.
675675
* @throws StorageException upon failure
676676
*/
677677
List<BlobInfo> update(BlobInfo... blobInfos);
@@ -681,8 +681,8 @@ public static Builder builder() {
681681
*
682682
* @param blobInfos blobs to delete
683683
* @return an immutable list of booleans. If a blob has been deleted the corresponding item in the
684-
* list is {@code true}. If deletion failed or access to the resource was denied the item is
685-
* {@code false}.
684+
* list is {@code true}. If deletion failed or access to the resource was denied the item is
685+
* {@code false}.
686686
* @throws StorageException upon failure
687687
*/
688688
List<Boolean> delete(BlobInfo... blobInfos);

0 commit comments

Comments
 (0)