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

Use delegate instead of super when calling the next filter #3222

Merged
merged 1 commit into from
Apr 1, 2025

Conversation

idelpivnitskiy
Copy link
Member

Motivation:

It's recommended to use delegate for invoking the next filter in the chain rather than super. In the past, we had cases when the super implementation changed and it affected filter behavior.

Modifications:

  • Replace all calls to super.handle(...) with delegate().handle(...) and super.request(...) with delegate.request(...).

Result:

All filters consistently use delegate.

Motivation:

It's recommended to use `delegate` for invoking the next filter in the
chain rather than `super`. In the past, we had cases when the `super`
implementation changed and it affected filter behavior.

Modifications:

- Replace all calls to `super.handle(...)` with `delegate().handle(...)`
and `super.request(...)` with `delegate.request(...)`.

Result:

All filters consistently use `delegate`.
@idelpivnitskiy idelpivnitskiy requested a review from daschl March 31, 2025 22:28
@idelpivnitskiy idelpivnitskiy self-assigned this Mar 31, 2025
Copy link
Contributor

@daschl daschl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚀

@idelpivnitskiy idelpivnitskiy merged commit 5155920 into apple:main Apr 1, 2025
11 checks passed
@idelpivnitskiy idelpivnitskiy deleted the deletage branch April 1, 2025 15:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants