perf: Removed unused ConfirmationActivity member (#1234)

## Summary

**What is the goal of this PR?**

Small follow up to #909, removing an unused member variable and some
temporary debug logging.

---

### AI Usage

While CrossPoint doesn't have restrictions on AI tools in contributing,
please be transparent about their usage as it
helps set the right context for reviewers.

Did you use AI tools to help write this code? _**NO**_
This commit is contained in:
Zach Nelson
2026-03-01 10:04:52 -06:00
committed by GitHub
parent 76681201bf
commit 80d1856330
2 changed files with 0 additions and 3 deletions

View File

@@ -11,7 +11,6 @@
class MyLibraryActivity final : public Activity { class MyLibraryActivity final : public Activity {
private: private:
// Deletion // Deletion
bool pendingSubActivityExit = false;
void clearFileMetadata(const std::string& fullPath); void clearFileMetadata(const std::string& fullPath);
ButtonNavigator buttonNavigator; ButtonNavigator buttonNavigator;

View File

@@ -28,8 +28,6 @@ void ConfirmationActivity::onEnter() {
if (!safeHeading.empty() && !safeBody.empty()) totalHeight += spacing; if (!safeHeading.empty() && !safeBody.empty()) totalHeight += spacing;
startY = (renderer.getScreenHeight() - totalHeight) / 2; startY = (renderer.getScreenHeight() - totalHeight) / 2;
LOG_DBG("CONF", "startY: %d", startY);
LOG_DBG("CONF", "Heading: %s", safeHeading.c_str());
requestUpdate(true); requestUpdate(true);
} }