Fix lint errors surfaced by the new nightly lint job#1937
Merged
Conversation
The lint job added in #1914 is the first run of lintObaGoogleDebug since lint was pulled off PR/push CI in #1843, so two unrelated regressions from that gap surfaced together: - AdjacencyRouteColors.kt's @SuppressLint("RestrictedApi") covers adjacencyRouteColors() but not the private routeColor() it calls, where the actual restricted Hct.from(...).toInt() calls live. - #1865 added new optional parameters ahead of the existing `modifier` parameter in RouteArrivalRow and ArrivalsList, breaking the Compose convention that modifier be the first optional parameter. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (3)
📝 WalkthroughWalkthroughThe changes reorder parameters in two arrivals composables and add a targeted lint suppression with explanatory context for the route color function. Runtime implementations and color-derivation logic remain unchanged. ChangesArrivals API and lint adjustments
Estimated code review effort: 1 (Trivial) | ~3 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The nightly
lintjob (added in #1914) is the first run oflintObaGoogleDebugsince lint was pulled off the PR/push path in #1843, so two unrelated regressions that accumulated in that gap surfaced together and broke today's nightly run:AdjacencyRouteColors.kt(2RestrictedApierrors): the file's@SuppressLint("RestrictedApi")coversadjacencyRouteColors(), but the actual restrictedHct.from(...).toInt()calls live in the privaterouteColor()it calls — suppressions don't propagate across function boundaries. Added the same annotation directly torouteColor(), matching the existing rationale/pattern used there and inLineBadge.kt.ArrivalRows.kt/ArrivalsScreen.kt(2ModifierParametererrors): Add adjacency-aware stop and route focus to the map #1865 added new optional parameters ahead of the existingmodifier: Modifier = Modifierparameter inRouteArrivalRowandArrivalsList, violating the Compose convention thatmodifierbe the first optional parameter. Movedmodifierback into position in both. All call sites use named arguments, so this is a safe reorder.Test plan
./gradlew :onebusaway-android:compileObaGoogleDebugKotlin -PwarningsAsErrors=true— clean./gradlew :onebusaway-android:lintObaGoogleDebug -PwarningsAsErrors=true— clean (was failing with 4 errors before this fix)🤖 Generated with Claude Code
Summary by CodeRabbit