Skip to content

Commit

Permalink
Merge pull request #744 from jean-philippe-martin/blob_notfinal
Browse files Browse the repository at this point in the history
Remove final from Blob
  • Loading branch information
aozarov committed Mar 11, 2016
2 parents 1425513 + 8a3b4f2 commit ddd02aa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
* {@link BlobInfo}.
* </p>
*/
public final class Blob extends BlobInfo {
public class Blob extends BlobInfo {

private static final long serialVersionUID = -6806832496717441434L;

Expand Down Expand Up @@ -482,13 +482,13 @@ public Builder toBuilder() {
}

@Override
public boolean equals(Object obj) {
public final boolean equals(Object obj) {
return obj instanceof Blob && Objects.equals(toPb(), ((Blob) obj).toPb())
&& Objects.equals(options, ((Blob) obj).options);
}

@Override
public int hashCode() {
public final int hashCode() {
return Objects.hash(super.hashCode(), options);
}

Expand Down

0 comments on commit ddd02aa

Please sign in to comment.