unused Date object

This commit is contained in:
Jörn-Michael Miehe 2023-09-16 00:16:57 +00:00
parent c55bef46dd
commit f7dc74d508

View file

@ -23,7 +23,7 @@ export default class extends Vue {
public string_repr = "";
private get target_date_ms(): number {
return new Date(Date.now() + this.millis).getTime();
return Date.now() + this.millis;
}
private tick(): void {