@@ -1316,31 +1316,31 @@ private static void checkContentType(BlobInfo blobInfo) throws IllegalArgumentEx
13161316 /**
13171317 * Delete the requested bucket.
13181318 *
1319- * @return true if bucket was deleted
1319+ * @return {@code true} if bucket was deleted, {@code false} if it was not found
13201320 * @throws StorageException upon failure
13211321 */
13221322 boolean delete (String bucket , BucketSourceOption ... options );
13231323
13241324 /**
13251325 * Delete the requested blob.
13261326 *
1327- * @return true if blob was deleted
1327+ * @return {@code true} if blob was deleted, {@code false} if it was not found
13281328 * @throws StorageException upon failure
13291329 */
13301330 boolean delete (String bucket , String blob , BlobSourceOption ... options );
13311331
13321332 /**
13331333 * Delete the requested blob.
13341334 *
1335- * @return true if blob was deleted
1335+ * @return {@code true} if blob was deleted, {@code false} if it was not found
13361336 * @throws StorageException upon failure
13371337 */
13381338 boolean delete (BlobId blob , BlobSourceOption ... options );
13391339
13401340 /**
13411341 * Delete the requested blob.
13421342 *
1343- * @return true if blob was deleted
1343+ * @return {@code true} if blob was deleted, {@code false} if it was not found
13441344 * @throws StorageException upon failure
13451345 */
13461346 boolean delete (BlobId blob );
@@ -1478,8 +1478,8 @@ private static void checkContentType(BlobInfo blobInfo) throws IllegalArgumentEx
14781478 *
14791479 * @param blobIds blobs to delete
14801480 * @return an immutable list of booleans. If a blob has been deleted the corresponding item in the
1481- * list is {@code true}. If deletion failed or access to the resource was denied the item is
1482- * {@code false}.
1481+ * list is {@code true}. If a blob was not found, deletion failed or access to the resource
1482+ * was denied the corresponding item is {@code false}.
14831483 * @throws StorageException upon failure
14841484 */
14851485 List <Boolean > delete (BlobId ... blobIds );
0 commit comments