From 874397badcda38ac9148eff17322cd13f178a8ce Mon Sep 17 00:00:00 2001 From: 3010293 <3010293@stud.hs-mannheim.de> Date: Sun, 17 Nov 2024 21:10:43 +0100 Subject: [PATCH] deleted sysout statements used for testing --- PR2Bib/src/Test.java | 8 -------- PR2Bib/src/Test1.java | 6 ------ PR2Bib/src/domainBib/Bibliothek.java | 2 -- PR2Bib/src/guiBib/BibliothekGUI.java | 2 -- 4 files changed, 18 deletions(-) delete mode 100644 PR2Bib/src/Test.java delete mode 100644 PR2Bib/src/Test1.java diff --git a/PR2Bib/src/Test.java b/PR2Bib/src/Test.java deleted file mode 100644 index a55df53..0000000 --- a/PR2Bib/src/Test.java +++ /dev/null @@ -1,8 +0,0 @@ - -public class Test { - - public static void main(String[] args) { - System.out.println("XYZ"); - } - -} diff --git a/PR2Bib/src/Test1.java b/PR2Bib/src/Test1.java deleted file mode 100644 index 74aa16e..0000000 --- a/PR2Bib/src/Test1.java +++ /dev/null @@ -1,6 +0,0 @@ - -public class Test1 { - public static void main(String[] args) { - System.out.println("ABA"); -} -} diff --git a/PR2Bib/src/domainBib/Bibliothek.java b/PR2Bib/src/domainBib/Bibliothek.java index d9f6948..4c62ca0 100644 --- a/PR2Bib/src/domainBib/Bibliothek.java +++ b/PR2Bib/src/domainBib/Bibliothek.java @@ -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; } diff --git a/PR2Bib/src/guiBib/BibliothekGUI.java b/PR2Bib/src/guiBib/BibliothekGUI.java index b79c798..9fdd70e 100644 --- a/PR2Bib/src/guiBib/BibliothekGUI.java +++ b/PR2Bib/src/guiBib/BibliothekGUI.java @@ -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) {