Skip to content

Instantly share code, notes, and snippets.

@christopherperry
Created April 10, 2016 03:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christopherperry/6a24663122d3d1312580e7570a71ca36 to your computer and use it in GitHub Desktop.
Save christopherperry/6a24663122d3d1312580e7570a71ca36 to your computer and use it in GitHub Desktop.
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