Code improvements.

This commit is contained in:
Ilkka Seppala
2015-05-17 21:46:51 +03:00
parent 8b8b81f26d
commit 8cc843465b
4 changed files with 7 additions and 7 deletions
@@ -7,7 +7,7 @@ package com.iluwatar;
*/
public class CoffeeMakingTask extends Task {
private static int TIME_PER_CUP = 300;
private static final int TIME_PER_CUP = 300;
public CoffeeMakingTask(int numCups) {
super(numCups * TIME_PER_CUP);