mirror of
https://github.com/github/codeql.git
synced 2026-02-12 21:21:16 +01:00
15 lines
266 B
Java
15 lines
266 B
Java
void printFellows(Set<Fellow> fellows) {
|
|
for(Fellow f: fellows) {
|
|
System.out.println(f);
|
|
}
|
|
}
|
|
|
|
//...
|
|
|
|
void printRecords() {
|
|
//...
|
|
printFellows(fellows);
|
|
printMembers(members);
|
|
printAssociates(associates);
|
|
printStudents(students);
|
|
} |