Skip to content

Instantly share code, notes, and snippets.

@babjo
Created July 17, 2021 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save babjo/04a3f5854fe16769a63667767c6cf121 to your computer and use it in GitHub Desktop.
Save babjo/04a3f5854fe16769a63667767c6cf121 to your computer and use it in GitHub Desktop.
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