Github user rmetzger commented on a diff in the pull request: https://github.com/apache/flink/pull/1764#discussion_r61411342 --- Diff: flink-streaming-java/src/main/java/org/apache/flink/streaming/api/functions/AscendingTimestampExtractor.java --- @@ -20,123 +20,18 @@ import org.apache.flink.annotation.PublicEvolving; -import org.apache.flink.streaming.api.watermark.Watermark; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import static java.util.Objects.requireNonNull; - /** * A timestamp assigner and watermark generator for streams where timestamps are monotonously * ascending. In this case, the local watermarks for the streams are easy to generate, because * they strictly follow the timestamps. * + * <b>Note:</b> This is just a stub class. The actual code for this has moved to + * {@link org.apache.flink.streaming.api.functions.timestamps.AscendingTimestampExtractor}. + * --- End diff -- What's the reasoning behind this stub class?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---