Compare commits

..

No commits in common. "1f2d4b206ef4e767fce93ac5a9b9a2cb30728bd6" and "3dc5790cb769f76d0deeeb519e74d232de07333e" have entirely different histories.

5 changed files with 18 additions and 2 deletions

2
PR2Bib/.gitignore vendored
View File

@ -1,2 +0,0 @@
/.project
/.classpath

View File

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

View File

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

View File

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

View File

@ -374,6 +374,7 @@ 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) {
@ -395,6 +396,7 @@ 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) {