Skip to content

Commit 161a70a

Browse files
committed
---
yaml --- r: 6049 b: refs/heads/tswast-patch-1 c: 88cbd26 h: refs/heads/master i: 6047: 7a105db
1 parent 56df413 commit 161a70a

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757
refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858
refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959
refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60-
refs/heads/tswast-patch-1: 4ebe129805bef27425738cb2bd550be0902fe01b
60+
refs/heads/tswast-patch-1: 88cbd26835414d8ae2c48f9ebb85b7a846e088d0
6161
refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b

branches/tswast-patch-1/gcloud-java-examples/src/main/java/com/google/gcloud/examples/StorageExample.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ private static abstract class StorageAction<T> {
8686

8787
abstract void run(Storage storage, T request) throws Exception;
8888

89-
abstract T parse(String... args) throws IllegalArgumentException, IOException;
89+
abstract T parse(String... args) throws Exception;
9090

9191
protected String params() {
9292
return "";
@@ -406,7 +406,7 @@ public String params() {
406406
*/
407407
private static class ComposeAction extends StorageAction<ComposeRequest> {
408408
@Override
409-
public void run(StorageService storage, ComposeRequest request) {
409+
public void run(Storage storage, ComposeRequest request) {
410410
Blob composedBlob = storage.compose(request);
411411
System.out.println("Composed " + composedBlob);
412412
}
@@ -490,12 +490,12 @@ private static class SignUrlAction extends
490490
private static final char[] PASSWORD = "notasecret".toCharArray();
491491

492492
@Override
493-
public void run(StorageService storage, Tuple<ServiceAccountAuthCredentials, Blob> tuple)
493+
public void run(Storage storage, Tuple<ServiceAccountAuthCredentials, Blob> tuple)
494494
throws Exception {
495495
run(storage, tuple.x(), tuple.y());
496496
}
497497

498-
private void run(StorageService storage, ServiceAccountAuthCredentials cred, Blob blob)
498+
private void run(Storage storage, ServiceAccountAuthCredentials cred, Blob blob)
499499
throws IOException {
500500
Calendar cal = Calendar.getInstance();
501501
cal.add(Calendar.DATE, 1);

branches/tswast-patch-1/gcloud-java-storage/src/main/java/com/google/gcloud/storage/Storage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ class ComposeRequest implements Serializable {
279279

280280
private final List<SourceBlob> sourceBlobs;
281281
private final Blob target;
282-
private final List<StorageService.BlobTargetOption> targetOptions;
282+
private final List<BlobTargetOption> targetOptions;
283283

284284
public static class SourceBlob implements Serializable {
285285

0 commit comments

Comments
 (0)