Corrected code to conform with the rest of the class

This commit is contained in:
Alexander Bielen
2018-10-30 19:43:23 +01:00
parent 95ae255b07
commit 76b46f1eff
@@ -115,7 +115,7 @@ public class Timer {
* @param startAmount start amount
* @return hourly gains
*/
public int getPerHour(final int gained, int startAmount) {
public int getPerHour(final int gained, final int startAmount) {
return (int) (((gained - startAmount) * 3600000D) / (System.currentTimeMillis() - start));
}