Update Timer.java

This commit is contained in:
cato
2020-08-26 22:20:06 +02:00
committed by GitHub
parent dcc8b61417
commit 5a29f358e3

View File

@@ -5,7 +5,7 @@ package util;
* *
* @param starttime This Parameter captures the time at the beginning of a program * @param starttime This Parameter captures the time at the beginning of a program
* @param endtime This Parameter captures the time at the end of a program * @param endtime This Parameter captures the time at the end of a program
* @Author BiteCoding --> https://github.com/BiteCoding * @Author cato447 --> https://github.com/cato447
*/ */
import java.util.Date; import java.util.Date;
@@ -38,4 +38,4 @@ public class Timer {
public String timeNeeded(){ public String timeNeeded(){
return "Time needed " + deltaTime() + " ms"; return "Time needed " + deltaTime() + " ms";
} }
} }