Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MINOR: remove incorrect deprecated annotations from internal Streams classes #19195

Merged
merged 1 commit into from
Mar 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ public V fetch(final K key,
}

@Override
@Deprecated
public WindowStoreIterator<V> fetch(final K key,
final long timeFrom,
final long timeTo) {
Expand All @@ -221,7 +220,6 @@ public WindowStoreIterator<V> backwardFetch(final K key,
}

@Override
@Deprecated
public KeyValueIterator<Windowed<K>, V> fetch(final K keyFrom,
final K keyTo,
final long timeFrom,
Expand All @@ -248,7 +246,6 @@ public KeyValueIterator<Windowed<K>, V> backwardAll() {
}

@Override
@Deprecated
public KeyValueIterator<Windowed<K>, V> fetchAll(final long timeFrom,
final long timeTo) {
return wrapped().fetchAll(timeFrom, timeTo);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@ public byte[] fetch(final Bytes key, final long windowStartTimestamp) {
}
}

@Deprecated
@Override
public WindowStoreIterator<byte[]> fetch(final Bytes key, final long timeFrom, final long timeTo) {
return fetch(key, timeFrom, timeTo, true);
Expand Down Expand Up @@ -236,7 +235,6 @@ WindowStoreIterator<byte[]> fetch(final Bytes key, final long timeFrom, final lo
}
}

@Deprecated
@Override
public KeyValueIterator<Windowed<Bytes>, byte[]> fetch(final Bytes keyFrom,
final Bytes keyTo,
Expand Down Expand Up @@ -294,7 +292,6 @@ KeyValueIterator<Windowed<Bytes>, byte[]> fetch(final Bytes from,
}
}

@Deprecated
@Override
public KeyValueIterator<Windowed<Bytes>, byte[]> fetchAll(final long timeFrom, final long timeTo) {
return fetchAll(timeFrom, timeTo, true);
Expand Down