deleted sysout statements used for testing

save
Berat Kocak 2024-11-17 21:10:43 +01:00
parent 12c332d77e
commit 874397badc
4 changed files with 0 additions and 18 deletions

View File

@ -1,8 +0,0 @@
public class Test {
public static void main(String[] args) {
System.out.println("XYZ");
}
}

View File

@ -1,6 +0,0 @@
public class Test1 {
public static void main(String[] args) {
System.out.println("ABA");
}
}

View File

@ -716,7 +716,6 @@ public class Bibliothek {
matches.add(j);
}
}
System.out.println("Filtered: " + matches.size());
return matches;
}
@ -733,7 +732,6 @@ public class Bibliothek {
matches.add(j);
}
}
System.out.println("Unfiltered: " + matches.size());
return matches;
}

View File

@ -374,7 +374,6 @@ public class BibliothekGUI extends JFrame implements ActionListener{
mainSearch.revalidate();
mainSearch.add(text1, BorderLayout.CENTER);
mainSearch.revalidate();
System.out.println("FIL");
} else if (i > 0){
JPanel ergebnisPanel = new JPanel(new GridLayout(i, 1, 10,10));
for(JLabel j: matchedMedia) {
@ -396,7 +395,6 @@ public class BibliothekGUI extends JFrame implements ActionListener{
mainSearch.revalidate();
mainSearch.add(text1, BorderLayout.CENTER);
mainSearch.revalidate();
System.out.println("UNFIL");
} else if (i > 0){
JPanel ergebnisPanel = new JPanel(new GridLayout(i, 1, 10,10));
for(JLabel j: matchedMedia) {