Last active
April 10, 2016 03:40
-
-
Save christopherperry/c75391bbdf52e2873844e1e5b78843cf to your computer and use it in GitHub Desktop.
Revisions
-
christopherperry revised this gist
Apr 10, 2016 . 1 changed file with 0 additions and 14 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,14 +0,0 @@ -
christopherperry created this gist
Apr 10, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ package coffee.maker; import coffee.maker.heater.ElectricHeater; import coffee.maker.pump.Thermosiphon; public class CoffeeMaker { private final ElectricHeater heater; private final Thermosiphon thermosiphon; public CoffeeMaker() { heater = new ElectricHeater(); thermosiphon = new Thermosiphon(); } } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ package coffee.maker; import coffee.maker.heater.Heater; import coffee.maker.pump.Pump; public class CoffeeMaker { private final Heater heater; private final Pump thermosiphon; public CoffeeMaker(Heater heater, Pump pump) { this.heater = heater; this.pump = pump; } }