From bb96de47be36c695fc48d225b995a82c0dad7561 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Sat, 12 Jul 2025 00:38:30 -0400 Subject: [PATCH] refactor: remove redundant comment in getIdFromTemplate function --- src/views/Chores/LocalNotificationScheduler.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/views/Chores/LocalNotificationScheduler.js b/src/views/Chores/LocalNotificationScheduler.js index 8a6b47f..12e6b89 100644 --- a/src/views/Chores/LocalNotificationScheduler.js +++ b/src/views/Chores/LocalNotificationScheduler.js @@ -22,7 +22,6 @@ const canScheduleNotification = async () => { } const getIdFromTemplate = (choreId, template) => { - // Generate a hash and convert to valid Java int range const hash = murmurhash.v3(`${choreId}-${template.value}-${template.unit}`) // Use Math.abs() with modulo to ensure positive ID within Java int range // This guarantees the ID is always positive and within 1 to 2^31-1