Skip to content

Commit 82e7903

Browse files
authored
Merge pull request #31 from UCSDOalads/addTESTbylhwlyd1
Removed the test print outs
2 parents badb174 + 12c6f75 commit 82e7903

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

src/ui/helper/ClassSearchFrame.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ public void run() {
101101
synchronized (searchingTextField) {
102102
searchText = searchingTextField.getText();
103103
}
104-
System.out.println("Searching for " + searchText);
105104
// start Search
106105
ArrayList<String> classesForName = searchUtil
107106
.classesForName(searchText);
@@ -146,8 +145,6 @@ public void actionPerformed(ActionEvent e) {
146145
dispose();
147146
} else if (e.getSource() == btnConfirm) {
148147

149-
System.out.println("btnConfirm pressed");
150-
151148
// return the selected (or the first if no selected) class if the
152149
// table is not empty
153150
if (resultsTable.getRowCount() != 0) {

src/ui/helper/ClassSearchFrameTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public void run() {
2121

2222
@Override
2323
public void didSelectClass(String classname) {
24-
24+
System.out.println(classname);
2525
}
2626
});
2727

0 commit comments

Comments
 (0)