File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
gcloud-java-storage/src/main/java/com/google/gcloud/storage Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 4949 * {@link BlobInfo}.
5050 * </p>
5151 */
52- public final class Blob extends BlobInfo {
52+ public class Blob extends BlobInfo {
5353
5454 private static final long serialVersionUID = -6806832496717441434L ;
5555
@@ -482,13 +482,13 @@ public Builder toBuilder() {
482482 }
483483
484484 @ Override
485- public boolean equals (Object obj ) {
485+ public final boolean equals (Object obj ) {
486486 return obj instanceof Blob && Objects .equals (toPb (), ((Blob ) obj ).toPb ())
487487 && Objects .equals (options , ((Blob ) obj ).options );
488488 }
489489
490490 @ Override
491- public int hashCode () {
491+ public final int hashCode () {
492492 return Objects .hash (super .hashCode (), options );
493493 }
494494
You can’t perform that action at this time.
0 commit comments