-
Notifications
You must be signed in to change notification settings - Fork 43
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
Remove link-dry-run related code (which seems not used anywhere in flutter & dart) #1613
Conversation
…utter & dart) It seems neither Flutter Tools nor Dart SDK uses or needs the link-dry-run functionality. So I think we can simplify the code by removing this.
PR HealthBreaking changes ✔️
Changelog Entry ✔️
Changes to files need to be accounted for in their respective changelogs. API leaks ✔️The following packages contain symbols visible in the public API, but not exported by the library. Export these symbols or remove them from your publicly visible API.
License Headers ✔️
All source files should start with a license header. Unrelated files missing license headers
Package publish validation ✔️
Documentation at https://github.com/dart-lang/ecosystem/wiki/Publishing-automation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, when we removed running the link hooks in JIT mode this became dead code.
Thanks @mkustermann!
Thanks for the quick review, @dcharkes ! |
… in flutter (#155820) The "link-dry-run" functionality was never used in flutter (even before the recent refactoring). I think we can remove this "link-dry-run" concept everywhere. PR to remove this in dart-lang/native: dart-lang/native#1613
… in flutter (flutter#155820) The "link-dry-run" functionality was never used in flutter (even before the recent refactoring). I think we can remove this "link-dry-run" concept everywhere. PR to remove this in dart-lang/native: dart-lang/native#1613
It seems neither Flutter Tools nor Dart SDK uses or needs the link-dry-run functionality. So I think we can simplify the code by removing this.
PR to remove remaining traces in flutter tools: flutter/flutter#155820