Skip to content

Commit

Permalink
resolve comments
Browse files Browse the repository at this point in the history
Signed-off-by: Sandeep Kumawat <[email protected]>
  • Loading branch information
Sandeep Kumawat committed Apr 8, 2024
1 parent e39ef16 commit a3a5de7
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,17 @@ public RemoteTransferContainer(
long expectedChecksum,
boolean isRemoteDataIntegritySupported
) {
this.fileName = fileName;
this.remoteFileName = remoteFileName;
this.contentLength = contentLength;
this.failTransferIfFileExists = failTransferIfFileExists;
this.writePriority = writePriority;
this.offsetRangeInputStreamSupplier = offsetRangeInputStreamSupplier;
this.expectedChecksum = expectedChecksum;
this.isRemoteDataIntegritySupported = isRemoteDataIntegritySupported;
this.metadata = null;
this(
fileName,
remoteFileName,
contentLength,
failTransferIfFileExists,
writePriority,
offsetRangeInputStreamSupplier,
expectedChecksum,
isRemoteDataIntegritySupported,
null
);
}

/**
Expand Down

0 comments on commit a3a5de7

Please sign in to comment.