Created
August 13, 2015 15:55
-
-
Save patrykpoborca/b14df0f2aae1e1ca5465 to your computer and use it in GitHub Desktop.
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 MyDependency {} | |
public class MyClass{ | |
private MyDependency dependency; | |
//Bad! ex 1 | |
public MyClass(){ | |
dependency = new MyDependency(); | |
} | |
//Good! ex 2 | |
public myClass(MyDependency myDependency){ | |
this.dependency = myDependency; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment