Remove unused runtime_config_t::m_prop_keys and m_prop_values#128268
Remove unused runtime_config_t::m_prop_keys and m_prop_values#128268elinor-fung wants to merge 1 commit into
Conversation
Removed unused property key and value vectors.
There was a problem hiding this comment.
Pull request overview
This PR removes two unused private vectors from runtime_config_t, reducing unused state in the corehost runtime configuration type.
Changes:
- Removed
m_prop_keysandm_prop_valuesfromruntime_config_t. - Verified no remaining references to these members in
src/native/corehostor the repository search scope.
Show a summary per file
| File | Description |
|---|---|
src/native/corehost/runtime_config.h |
Removes unused private property key/value vector fields from runtime_config_t. |
Copilot's findings
- Files reviewed: 1/1 changed files
- Comments generated: 0
|
Caution Security scanning requires review for Code Review DetailsThe threat detection results could not be parsed. The workflow output should be reviewed before merging. Review the workflow run logs for details. 🤖 Copilot Code Review — PR #128268Note This review was generated by Copilot. Holistic AssessmentMotivation: The PR removes two unused member variables ( Approach: Direct deletion of the unused fields. This is the simplest and only correct approach. Summary: ✅ LGTM. Trivial dead code cleanup. Grep across the entire Detailed Findings✅ Correctness — Fields are genuinely unusedSearched for ✅ Scope — Minimal, focused changeThe PR touches exactly one file and removes exactly two lines. No risk of unintended side effects.
|
Removed unused property key and value vectors.