Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions google-cloud-storage/clirr-ignored-differences.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,20 @@
<method>* writeAndClose(*)</method>
</difference>

<!-- @BetaApi members -->
<difference>
<differenceType>7009</differenceType>
<className>com/google/cloud/storage/ParallelCompositeUploadBlobWriteSessionConfig$PartCleanupStrategy</className>
<method>boolean isDeleteAllOnError()</method>
</difference>
<difference>
<differenceType>7009</differenceType>
<className>com/google/cloud/storage/ParallelCompositeUploadBlobWriteSessionConfig$PartCleanupStrategy</className>
<method>boolean isDeletePartsOnSuccess()</method>
</difference>
<difference>
<differenceType>7009</differenceType>
<className>com/google/cloud/storage/ParallelCompositeUploadBlobWriteSessionConfig$PartNamingStrategy</className>
<method>java.lang.String fmtFields(*)</method>
</difference>
</differences>
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ String fmtName(String ultimateObjectName, PartRange partRange) {
return fmtFields(randomKey, nameDigest, partRange.encode());
}

protected abstract String fmtFields(String randomKey, String nameDigest, String partRange);
abstract String fmtFields(String randomKey, String nameDigest, String partRange);

/**
* Default strategy in which no stable prefix is defined.
Expand Down Expand Up @@ -588,11 +588,11 @@ private PartCleanupStrategy(boolean deletePartsOnSuccess, boolean deleteAllOnErr
this.deleteAllOnError = deleteAllOnError;
}

public boolean isDeletePartsOnSuccess() {
boolean isDeletePartsOnSuccess() {
return deletePartsOnSuccess;
}

public boolean isDeleteAllOnError() {
boolean isDeleteAllOnError() {
return deleteAllOnError;
}

Expand Down