Created
April 10, 2016 03:41
-
-
Save christopherperry/6a24663122d3d1312580e7570a71ca36 to your computer and use it in GitHub Desktop.
This file contains 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 characters
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; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment