gaborgsomogyi commented on code in PR #28590: URL: https://github.com/apache/flink/pull/28590#discussion_r3507323006
########## docs/content/docs/libs/state_processor_api.md: ########## @@ -265,20 +265,20 @@ DataStream<KeyedState> keyRange = savepoint.readKeyedState( `SavepointKeyFilter` provides the following factory methods: -* `SavepointKeyFilter.exact(Object key)` / `SavepointKeyFilter.exact(Set<Object> keys)` — match a single key or a finite set of keys. +* `SavepointKeyFilter.exact(K key)` / `SavepointKeyFilter.exact(Set<K> keys)` — match a single key or a finite set of keys. * `SavepointKeyFilter.range(Comparable<?> lower, boolean lowerInclusive, Comparable<?> upper, boolean upperInclusive)` — match a range. Either bound may be `null` to leave that side unbounded. Review Comment: Fixed. -- 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]
