Normal
[code=java]public String printLectures() { String result = ""; for (Lecture lecture : this.lectures) { result += lecture.getName() + "\n"; } return result;}[/code]?
[code=java]public String printLectures() {
String result = "";
for (Lecture lecture : this.lectures) {
result += lecture.getName() + "\n";
}
return result;
}[/code]
?