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 characters
| public class EmotionManager { | |
| private final PeanutButterJar peanutButterJar; | |
| private final Benfica benfica; | |
| @Inject public EmotionManager(PeanutButterJar peanutButterJar, Benfica benfica) { | |
| this.peanutButterJar = peanutButterJar; | |
| this.benfica = benfica; | |
| } |
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 characters
| PeanutButterJar peanutButterJar = new PeanutButterJar(...); | |
| Benfica benfica = new Benfica(...); | |
| EmotionManager emotionManager = new EmotionManager(peanutButterJar, benfica); |
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 characters
| public class EmotionManager { | |
| private final PeanutButterJar peanutButterJar; | |
| private final Benfica benfica; | |
| public EmotionManager(PeanutButterJar peanutButterJar, Benfica benfica) { | |
| this.peanutButterJar = peanutButterJar; | |
| this.benfica = benfica; | |
| } |
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 characters
| public class EmotionManager { | |
| private final PeanutButterJar peanutButterJar; | |
| private final Benfica benfica; | |
| public EmotionManager() { | |
| this.peanutButterJar = new PeanutButterJar(); | |
| this.benfica = new Benfica(); | |
| } |
NewerOlder