Created
December 9, 2018 16:48
-
-
Save alz-ahm/05398be096eae9d10c51efa0f8afec88 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
class ClassA { | |
var classB: ClassB | |
@Inject constructor(classB: ClassB){ | |
this.classB = classB | |
} | |
} | |
class ClassB { | |
var classC: ClassC | |
@Inject constructor(classC: ClassC){ | |
this.classC = classC | |
} | |
} | |
class ClassC { | |
@Inject constructor(){ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment