Skip to content

Commit

Permalink
remove debug comments
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseLovelace committed Feb 14, 2024
1 parent 0f837d3 commit c2884aa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,6 @@ private Bucket bucketInfoEncode(BucketInfo from) {
ifNonNull(from.getSoftDeletePolicy(), softDeletePolicyCodec::encode, to::setSoftDeletePolicy);
if (from.getModifiedFields().contains(SOFT_DELETE_POLICY)
&& from.getSoftDeletePolicy() == null) {
System.out.println("this is happening");
System.out.println(Bucket.SoftDeletePolicy.getDefaultInstance().toString());
to.clearSoftDeletePolicy();
}
CustomPlacementConfig customPlacementConfig = from.getCustomPlacementConfig();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,6 @@ private Storage.Objects.Get getCall(StorageObject object, Map<Option, ?> options
.setFields(Option.FIELDS.getString(options))
.setUserProject(Option.USER_PROJECT.getString(options))
.setSoftDeleted(Option.SOFT_DELETED.getBoolean(options));
// .setGeneration(Option.GENERATION.getLong(options));
}

@Override
Expand Down

0 comments on commit c2884aa

Please sign in to comment.