Skip to content
This repository was archived by the owner on Jul 19, 2024. It is now read-only.

Commit 5d0461b

Browse files
author
Josh Friedman
committed
Reverting overload calls for streams
1 parent de3db9f commit 5d0461b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobEncryptStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public void write(byte[] data, int offset, int length) throws IOException {
145145

146146
@Override
147147
public void write(InputStream sourceStream, long writeLength) throws IOException, StorageException {
148-
Utility.writeToOutputStream(sourceStream, this, writeLength, false, false, this.opContext, this.options, false, null /* request */, null /* descriptor */);
148+
Utility.writeToOutputStream(sourceStream, this, writeLength, false, false, this.opContext, this.options, false);
149149
}
150150

151151
@Override

microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobOutputStreamInternal.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ public void write(final byte[] data, final int offset, final int length) throws
641641
*/
642642
@DoesServiceRequest
643643
public void write(final InputStream sourceStream, final long writeLength) throws IOException, StorageException {
644-
Utility.writeToOutputStream(sourceStream, this, writeLength, false, false, this.opContext, this.options, false, null /* request */, null /* descriptor */);
644+
Utility.writeToOutputStream(sourceStream, this, writeLength, false, false, this.opContext, this.options, false);
645645
}
646646

647647
/**

microsoft-azure-storage/src/com/microsoft/azure/storage/file/FileOutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ public void write(final byte[] data, final int offset, final int length) throws
404404
*/
405405
@DoesServiceRequest
406406
public void write(final InputStream sourceStream, final long writeLength) throws IOException, StorageException {
407-
Utility.writeToOutputStream(sourceStream, this, writeLength, false, false, this.opContext, this.options, false, null /* request */, null /* descriptor */);
407+
Utility.writeToOutputStream(sourceStream, this, writeLength, false, false, this.opContext, this.options, false);
408408
}
409409

410410
/**

0 commit comments

Comments
 (0)