Skip to content

Commit

Permalink
fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
aozarov committed May 29, 2015
1 parent 6081b74 commit 19f3350
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private static abstract class StorageAction<T> {

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

abstract T parse(String... args) throws IllegalArgumentException, IOException;
abstract T parse(String... args) throws Exception;

protected String params() {
return "";
Expand Down Expand Up @@ -406,7 +406,7 @@ public String params() {
*/
private static class ComposeAction extends StorageAction<ComposeRequest> {
@Override
public void run(StorageService storage, ComposeRequest request) {
public void run(Storage storage, ComposeRequest request) {
Blob composedBlob = storage.compose(request);
System.out.println("Composed " + composedBlob);
}
Expand Down Expand Up @@ -490,12 +490,12 @@ private static class SignUrlAction extends
private static final char[] PASSWORD = "notasecret".toCharArray();

@Override
public void run(StorageService storage, Tuple<ServiceAccountAuthCredentials, Blob> tuple)
public void run(Storage storage, Tuple<ServiceAccountAuthCredentials, Blob> tuple)
throws Exception {
run(storage, tuple.x(), tuple.y());
}

private void run(StorageService storage, ServiceAccountAuthCredentials cred, Blob blob)
private void run(Storage storage, ServiceAccountAuthCredentials cred, Blob blob)
throws IOException {
Calendar cal = Calendar.getInstance();
cal.add(Calendar.DATE, 1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ class ComposeRequest implements Serializable {

private final List<SourceBlob> sourceBlobs;
private final Blob target;
private final List<StorageService.BlobTargetOption> targetOptions;
private final List<BlobTargetOption> targetOptions;

public static class SourceBlob implements Serializable {

Expand Down

0 comments on commit 19f3350

Please sign in to comment.