Skip to content

Commit

Permalink
Remove unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
noah-nm committed Feb 1, 2025
1 parent 577a94d commit 3ef81a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/builders/bases/StopwatchButton.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ class _StopwatchButtonState extends State<StopwatchButton> {
return "Stop Timer";
}

String milliseconds = (milli % 1000).toString().padLeft(1, "0");
String seconds = ((milli ~/ 1000) % 60).toString().padLeft(2, "0");
String minutes = ((milli ~/ 1000) ~/ 60).toString().padLeft(1, "0");
// String milliseconds = (milli % 1000).toString().padLeft(1, "0");
// String seconds = ((milli ~/ 1000) % 60).toString().padLeft(2, "0");
// String minutes = ((milli ~/ 1000) ~/ 60).toString().padLeft(1, "0");

return milli.toString();
}
Expand Down

0 comments on commit 3ef81a2

Please sign in to comment.