Skip to content

Commit 4ab3bd6

Browse files
committed
---
yaml --- r: 4571 b: refs/heads/logging-alpha c: 3600338 h: refs/heads/master i: 4569: 0d15910 4567: af57050
1 parent 5117566 commit 4ab3bd6

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

  • branches/logging-alpha/gcloud-java-storage/src/main/java/com/google/gcloud/storage

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ refs/heads/compute-alpha: 969cba2627f1d53d352cc4a5ffe0879dacf65e6c
1212
refs/heads/dns-alpha: 2f90e7e338349287ace33375896907af0f032ca1
1313
refs/heads/dns-alpha-batch: 17442b07867021b85d0452f5f3eda29a3413288f
1414
refs/heads/gcs-nio: 283aeaf15efdcf3621eb6859f05e55ad7764375d
15-
refs/heads/logging-alpha: a3fdbbc697b5923848f6d3609b82232994a2433f
15+
refs/heads/logging-alpha: 36003385f3fb321a52af6533374fa7b3489b1ec7
1616
refs/tags/v0.1.0: a615317f7424ed58621b1f65d5c4d8cbbe8a6ed8
1717
refs/tags/v0.1.1: 7a7f6985fe465e9dd6a075af55493f42b4933be0
1818
refs/tags/v0.1.2: 3eb3fe866ba22487686048f45d927b8c8638ea3f

branches/logging-alpha/gcloud-java-storage/src/main/java/com/google/gcloud/storage/Bucket.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -207,17 +207,17 @@ public static BlobTargetOption generationNotMatch(long generation) {
207207

208208
/**
209209
* Returns an option for blob's metageneration match. If this option is used the request will
210-
* fail if metageneration does not match the provided value. Either this option or
211-
* {@link #metagenerationNotMatch(long)} can be provided at the same time.
210+
* fail if metageneration does not match the provided value. This option can not be provided
211+
* together with {@link #metagenerationNotMatch(long)}.
212212
*/
213213
public static BlobTargetOption metagenerationMatch(long metageneration) {
214214
return new BlobTargetOption(StorageRpc.Option.IF_METAGENERATION_MATCH, metageneration);
215215
}
216216

217217
/**
218218
* Returns an option for blob's metageneration mismatch. If this option is used the request will
219-
* fail if metageneration matches the provided value. Either this option or
220-
* {@link #metagenerationMatch(long)} can be provided at the same time.
219+
* fail if metageneration matches the provided value. This option can not be provided together
220+
* with {@link #metagenerationMatch(long)}.
221221
*/
222222
public static BlobTargetOption metagenerationNotMatch(long metageneration) {
223223
return new BlobTargetOption(StorageRpc.Option.IF_METAGENERATION_NOT_MATCH, metageneration);
@@ -353,8 +353,8 @@ public static BlobWriteOption generationNotMatch(long generation) {
353353

354354
/**
355355
* Returns an option for blob's metageneration match. If this option is used the request will
356-
* fail if metageneration does not match the provided value. Either this option or
357-
* {@link #metagenerationNotMatch(long)} can be provided at the same time.
356+
* fail if metageneration does not match the provided value. This option can not be provided
357+
* together with {@link #metagenerationNotMatch(long)}.
358358
*/
359359
public static BlobWriteOption metagenerationMatch(long metageneration) {
360360
return new BlobWriteOption(Storage.BlobWriteOption.Option.IF_METAGENERATION_MATCH,
@@ -363,8 +363,8 @@ public static BlobWriteOption metagenerationMatch(long metageneration) {
363363

364364
/**
365365
* Returns an option for blob's metageneration mismatch. If this option is used the request will
366-
* fail if metageneration matches the provided value. Either this option or
367-
* {@link #metagenerationMatch(long)} can be provided at the same time.
366+
* fail if metageneration matches the provided value. This option can not be provided together
367+
* with {@link #metagenerationMatch(long)}.
368368
*/
369369
public static BlobWriteOption metagenerationNotMatch(long metageneration) {
370370
return new BlobWriteOption(Storage.BlobWriteOption.Option.IF_METAGENERATION_NOT_MATCH,

0 commit comments

Comments
 (0)