Skip to content

Commit

Permalink
Merge branch '3921-S3-driver-off-3919' of https://github.com/IQSS/dat…
Browse files Browse the repository at this point in the history
…averse into 3921-S3-driver-off-3919
  • Loading branch information
matthew-a-dunlap committed Jul 26, 2017
2 parents 4f58c01 + 2a2ee38 commit b1c9cfa
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,21 @@ public class S3AccessIO<T extends DvObject> extends DataFileIO<T> {
private static final Logger logger = Logger.getLogger("edu.harvard.iq.dataverse.dataaccess.S3AccessIO");

//FIXME: Empty
public S3AccessIO() throws IOException {
public S3AccessIO() {
this(null);
}

//FIXME: Empty
public S3AccessIO(T dvObject) throws IOException {
public S3AccessIO(T dvObject) {
this(dvObject, null);
}

//FIXME: Empty
public S3AccessIO(T dvObject, DataAccessRequest req) throws IOException {
public S3AccessIO(T dvObject, DataAccessRequest req) {
super(dvObject, req);
this.setIsLocalFile(false);
}



//FIXME: Delete vars?
private boolean isReadAccess = false;
private boolean isWriteAccess = false;
Expand Down

0 comments on commit b1c9cfa

Please sign in to comment.