deleted sysout statements used for testing
parent
12c332d77e
commit
874397badc
|
@ -1,8 +0,0 @@
|
||||||
|
|
||||||
public class Test {
|
|
||||||
|
|
||||||
public static void main(String[] args) {
|
|
||||||
System.out.println("XYZ");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
|
|
||||||
public class Test1 {
|
|
||||||
public static void main(String[] args) {
|
|
||||||
System.out.println("ABA");
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -716,7 +716,6 @@ public class Bibliothek {
|
||||||
matches.add(j);
|
matches.add(j);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
System.out.println("Filtered: " + matches.size());
|
|
||||||
return matches;
|
return matches;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -733,7 +732,6 @@ public class Bibliothek {
|
||||||
matches.add(j);
|
matches.add(j);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
System.out.println("Unfiltered: " + matches.size());
|
|
||||||
return matches;
|
return matches;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -374,7 +374,6 @@ public class BibliothekGUI extends JFrame implements ActionListener{
|
||||||
mainSearch.revalidate();
|
mainSearch.revalidate();
|
||||||
mainSearch.add(text1, BorderLayout.CENTER);
|
mainSearch.add(text1, BorderLayout.CENTER);
|
||||||
mainSearch.revalidate();
|
mainSearch.revalidate();
|
||||||
System.out.println("FIL");
|
|
||||||
} else if (i > 0){
|
} else if (i > 0){
|
||||||
JPanel ergebnisPanel = new JPanel(new GridLayout(i, 1, 10,10));
|
JPanel ergebnisPanel = new JPanel(new GridLayout(i, 1, 10,10));
|
||||||
for(JLabel j: matchedMedia) {
|
for(JLabel j: matchedMedia) {
|
||||||
|
@ -396,7 +395,6 @@ public class BibliothekGUI extends JFrame implements ActionListener{
|
||||||
mainSearch.revalidate();
|
mainSearch.revalidate();
|
||||||
mainSearch.add(text1, BorderLayout.CENTER);
|
mainSearch.add(text1, BorderLayout.CENTER);
|
||||||
mainSearch.revalidate();
|
mainSearch.revalidate();
|
||||||
System.out.println("UNFIL");
|
|
||||||
} else if (i > 0){
|
} else if (i > 0){
|
||||||
JPanel ergebnisPanel = new JPanel(new GridLayout(i, 1, 10,10));
|
JPanel ergebnisPanel = new JPanel(new GridLayout(i, 1, 10,10));
|
||||||
for(JLabel j: matchedMedia) {
|
for(JLabel j: matchedMedia) {
|
||||||
|
|
Loading…
Reference in New Issue