Skip to content

Commit

Permalink
[hotfix][core] Add/remove missing/incorrect serialVersionUID fields i…
Browse files Browse the repository at this point in the history
…n Timestamp Assigner classes
  • Loading branch information
StephanEwen committed May 20, 2020
1 parent be59c26 commit 7de9d20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
*/
@Public
public final class IngestionTimeAssigner<T> implements TimestampAssigner<T> {
private static final long serialVersionUID = 1L;

private long maxTimestamp;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
@Public
public final class RecordTimestampAssigner<E> implements TimestampAssigner<E> {

private static final long serialVersionUID = 1L;

@Override
public long extractTimestamp(E element, long recordTimestamp) {
return recordTimestamp;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ interface Context {
* into the {@link SerializableTimestampAssigner}.
*/
class SupplierFromSerializableTimestampAssigner<T> implements TimestampAssignerSupplier<T> {

private static final long serialVersionUID = 1L;

private final SerializableTimestampAssigner<T> assigner;

public SupplierFromSerializableTimestampAssigner(SerializableTimestampAssigner<T> assigner) {
Expand Down

0 comments on commit 7de9d20

Please sign in to comment.