[CarPlay] Remove extraneous [Deprecated] on a CPGridButton ctor. Fixes #24491.#24497
[CarPlay] Remove extraneous [Deprecated] on a CPGridButton ctor. Fixes #24491.#24497rolfbjarne merged 1 commit intomainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
This PR removes incorrectly applied [Deprecated] attributes from the CPGridButton constructor. The original constructor was mistakenly marked as deprecated when a new constructor with additional parameters was introduced in iOS 26.0, but Apple did not actually deprecate the original constructor.
Changes:
- Removed two
[Deprecated]attributes from theinitWithTitleVariants:image:handler:constructor inCPGridButton
✅ [PR Build #75a0f31] Build passed (Detect API changes) ✅Pipeline on Agent |
✅ [CI Build #75a0f31] Build passed (Build packages) ✅Pipeline on Agent |
✅ API diff for current PR / commitNET (empty diffs)✅ API diff vs stableNET (empty diffs)ℹ️ Generator diffGenerator Diff: vsdrops (html) vsdrops (raw diff) gist (raw diff) - Please review changes) Pipeline on Agent |
✅ [CI Build #75a0f31] Build passed (Build macOS tests) ✅Pipeline on Agent |
💻 [CI Build #75a0f31] Tests on macOS X64 - Mac Sonoma (14) passed 💻✅ All tests on macOS X64 - Mac Sonoma (14) passed. Pipeline on Agent |
💻 [CI Build #75a0f31] Tests on macOS M1 - Mac Monterey (12) passed 💻✅ All tests on macOS M1 - Mac Monterey (12) passed. Pipeline on Agent |
💻 [CI Build #75a0f31] Tests on macOS arm64 - Mac Sequoia (15) passed 💻✅ All tests on macOS arm64 - Mac Sequoia (15) passed. Pipeline on Agent |
💻 [CI Build #75a0f31] Tests on macOS M1 - Mac Ventura (13) passed 💻✅ All tests on macOS M1 - Mac Ventura (13) passed. Pipeline on Agent |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
1 similar comment
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
💻 [CI Build #75a0f31] Tests on macOS arm64 - Mac Tahoe (26) passed 💻✅ All tests on macOS arm64 - Mac Tahoe (26) passed. Pipeline on Agent |
🚀 [CI Build #75a0f31] Test results 🚀Test results✅ All tests passed on VSTS: test results. 🎉 All 117 tests passed 🎉 Tests counts✅ cecil: All 1 tests passed. Html Report (VSDrops) Download Pipeline on Agent |
The CPGridButton constructors aren't deprecated, so remove any such
[Deprecated] attributes.
Fixes #24491.