Skip to content

Instantly share code, notes, and snippets.

@bffcorreia
Created May 17, 2017 09:26
Show Gist options
  • Save bffcorreia/dd8c610ff78fdee8d9680cf3b5bdcf58 to your computer and use it in GitHub Desktop.
Save bffcorreia/dd8c610ff78fdee8d9680cf3b5bdcf58 to your computer and use it in GitHub Desktop.
public class EmotionManager {
private final PeanutButterJar peanutButterJar;
private final Benfica benfica;
@Inject public EmotionManager(PeanutButterJar peanutButterJar, Benfica benfica) {
this.peanutButterJar = peanutButterJar;
this.benfica = benfica;
}
public boolean isHappy() {
return peanutButterJar.isNotEmpty() && benfica.wonLastGame();
}
public boolean isAngry() {
return peanutButterJar.isEmpty() || benfica.lostLastGame();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment