
# Objective Renames `Timer::finished` and `Timer::paused` to `Timer::is_finished` and `Timer::is_paused` to align the public APIs for `Time`, `Timer`, and `Stopwatch`. Fixes #19110
348 B
348 B
title | pull_requests | |
---|---|---|
Renamed `Timer::paused` to `Timer::is_paused` and `Timer::finished` to `Timer::is_finished` |
|
The following changes were made:
Timer::paused
is nowTimer::is_paused
Timer::finished
is nowTimer::is_finished
This change was made to align the Timer
public API with that of Time
and Stopwatch
.