We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55df976 commit 22455aeCopy full SHA for 22455ae
2 files changed
gcloud-java-pubsub/src/main/java/com/google/cloud/pubsub/Message.java
@@ -54,6 +54,7 @@ protected InternalByteArray(ByteArray byteArray) {
54
super(byteArray);
55
}
56
57
+ @Override
58
protected ByteString byteString() {
59
return super.byteString();
60
gcloud-java-pubsub/src/main/java/com/google/cloud/pubsub/PubSub.java
@@ -110,6 +110,8 @@ interface MessageConsumer extends AutoCloseable {
110
111
final class PullOption implements Serializable {
112
113
+ private static final long serialVersionUID = 4792164134340316582L;
114
+
115
private final Option option;
116
private final Object value;
117
0 commit comments