AHeise commented on a change in pull request #16701:
URL: https://github.com/apache/flink/pull/16701#discussion_r683683906
##########
File path:
flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/operators/sink/AbstractStreamingCommitterHandler.java
##########
@@ -49,10 +49,10 @@
* @param <InputT> The input type of the {@link Committer}.
* @param <CommT> The committable type of the {@link Committer}.
*/
-abstract class AbstractStreamingCommitterOperator<InputT, CommT>
- extends AbstractStreamOperator<CommT> implements
OneInputStreamOperator<InputT, CommT> {
-
- private static final long serialVersionUID = 1L;
Review comment:
Note that factories should have `serialVersionUID` if we are very
strict. However, actually in non-persistent serialization none of it actually
matters. `serialVersionUID` is only important if you need a way to read old
serialized data into changed serializable classes.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]