chore: remove dead solution-mapping and solver-steps functions#122
Merged
Trosper3 merged 2 commits intoJul 4, 2026
Merged
Conversation
Remove three exported functions from components/redux/index.js that have no callers anywhere in the repo: - processReductionVisualizations - requestMappedSolutionTransitive - requestMappedSolution processReductionVisualizations and requestMappedSolutionTransitive were never imported; requestMappedSolution was only reachable through those two, so all three are unreachable at runtime. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
requestSolverSteps in components/redux/index.js has no callers anywhere in the repo. It also points at a misspelled route (ProlemProvider) with a copy-pasted error message, confirming it was never exercised. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Trosper3
approved these changes
Jul 4, 2026
Trosper3
left a comment
Contributor
There was a problem hiding this comment.
Exhaustive search (git grep + ripgrep over the full tree, incl. untracked) confirms no references remain to any of the four names.
No barrel re-exports, import * as namespace dispatch, or dynamic string dispatch could reach them — all consumers of this module use named imports.
eslint components/redux/index.js passes.
This is a very nice check. Thanks for purging this.
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
Removes four exported functions from
components/redux/index.jsthat have no callers anywhere in the repo:processReductionVisualizationsrequestMappedSolutionTransitiverequestMappedSolutionrequestSolverStepsprocessReductionVisualizationsandrequestMappedSolutionTransitiveare never imported.requestMappedSolutionwas only reachable through those two, so all three are unreachable at runtime.requestSolverStepslikewise has no callers — and points at a misspelled route (ProlemProvider) with a copy-pasted error message, confirming it was never exercised. 63 lines removed.Verification
git grep+ ripgrep over the full tree, incl. untracked) confirms no references remain to any of the four names.import * asnamespace dispatch, or dynamic string dispatch could reach them — all consumers of this module use named imports.eslint components/redux/index.jspasses.🤖 Generated with Claude Code