|
1 | 1 | packagecom.nighthacking;
|
2 | 2 |
|
3 | 3 | importcom.nighthacking.recipes.AeroPressCoffee;
|
4 |
| -importcom.nighthacking.recipe.CommandLineReciperRunner; |
| 4 | +importcom.nighthacking.recipe.CommandLineRecipeRunner; |
5 | 5 | importcom.nighthacking.recipes.CoffeeCalculator;
|
6 | 6 |
|
7 | 7 | /**
|
|
10 | 10 | publicclassJavaScale {
|
11 | 11 |
|
12 | 12 | publicstaticvoidmain(String[]args)throwsInterruptedException {
|
13 |
| -CommandLineReciperRunnerrunner =newCommandLineReciperRunner(); |
| 13 | +CommandLineRecipeRunnerrunner =newCommandLineRecipeRunner(); |
14 | 14 | runner.runRecipe(newAeroPressCoffee(CoffeeCalculator.STRONG));
|
15 | 15 | runner.close();
|
16 | 16 | }
|
|