Created
July 17, 2021 10:49
-
-
Save babjo/04a3f5854fe16769a63667767c6cf121 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 SmallClass1 { | |
private Collaborator collaborator1; | |
public void doSomething(){ | |
... | |
} | |
} | |
public class SmallClass2 { | |
private Collaborator collaborator2; | |
public void doSomething(){ | |
... | |
} | |
} | |
public class SmallClass3 { | |
private Collaborator collaborator3; | |
public void doSomething(){ | |
... | |
} | |
} | |
public class SmallClass4 { | |
private Collaborator collaborator4; | |
public void doSomething(){ | |
... | |
} | |
} | |
public class SmallClass5 { | |
private Collaborator collaborator5; | |
public void doSomething(){ | |
... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment