fix: remove unused variables in MyLibraryActivity::loop()

Fixes cppcheck warnings:
- [low:style] Variable 'itemCount' is assigned a value that is never used
- [low:style] Variable 'pageItems' is assigned a value that is never used
This commit is contained in:
pablohc 2026-01-31 01:55:45 +01:00
parent 01651b0385
commit 3b9a37e075

View File

@ -228,9 +228,6 @@ void MyLibraryActivity::onExit() {
}
void MyLibraryActivity::loop() {
const int itemCount = getCurrentItemCount();
const int pageItems = getPageItems();
// Get current time for all timing operations
unsigned long currentTime = millis();