Skip to content

Commit

Permalink
Revert "Fixes as file backend API changes."
Browse files Browse the repository at this point in the history
This reverts commit aea7eeb.
  • Loading branch information
Andrew Sung committed Aug 10, 2020
1 parent aea7eeb commit 8c645db
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/java/gyro/azure/CloudBlobContainerFileBackend.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
import com.psddev.dari.util.StringUtils;
import gyro.azure.storage.StorageAccountResource;
import gyro.core.FileBackend;
import gyro.core.FileBackendAccess;
import gyro.core.GyroCore;
import gyro.core.GyroException;
import gyro.core.Type;
Expand Down Expand Up @@ -116,7 +115,7 @@ public InputStream openInput(String file) throws Exception {
}

@Override
public OutputStream openOutput(String file, FileBackendAccess acl) throws Exception {
public OutputStream openOutput(String file) throws Exception {
return getBlockBlobReference(file).openOutputStream();
}

Expand All @@ -131,7 +130,7 @@ public boolean exists(String file) throws Exception {
}

@Override
public void copy(String source, String destination, FileBackendAccess acl) throws Exception {
public void copy(String source, String destination) throws Exception {
CloudBlockBlob target = getBlockBlobReference(destination);
target.startCopy(getBlockBlobReference(source));

Expand Down

0 comments on commit 8c645db

Please sign in to comment.