Skip to content

Commit 0e4816a

Browse files
committed
wip
1 parent fa17303 commit 0e4816a

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

src/main/java/mediathek/gui/tabs/tab_film/filter/AutoCompletionComboBox2.java

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,6 @@ protected void setSelectedIndex(int index, boolean incremental) {
7474
});
7575
}
7676

77-
/**
78-
* Gets the strict property.
79-
*
80-
* @return the value of strict property.
81-
*/
82-
public boolean isStrict() {
83-
return getAutoCompletion().isStrict();
84-
}
85-
8677
/**
8778
* Sets the strict property. If true, it will not allow user to type in anything that is not in the known item list.
8879
* If false, user can type in whatever he/she wants. If the text can match with a item in the known item list, it
@@ -94,23 +85,13 @@ public void setStrict(boolean strict) {
9485
getAutoCompletion().setStrict(strict);
9586
}
9687

97-
/**
98-
* Gets the strict completion property.
99-
*
100-
* @return the value of strict completion property.
101-
* @see #setStrictCompletion(boolean)
102-
*/
103-
public boolean isStrictCompletion() {
104-
return getAutoCompletion().isStrictCompletion();
105-
}
106-
10788
/**
10889
* Sets the strict completion property. If true, in case insensitive searching, it will always use the exact item in
10990
* the Searchable to replace whatever user types. For example, when Searchable has an item "Arial" and user types in
11091
* "AR", if this flag is true, it will auto-completed as "Arial". If false, it will be auto-completed as "ARial". Of
11192
* course, this flag will only make a difference if Searchable is case insensitive.
11293
*
113-
* @param strictCompletion
94+
* @param strictCompletion true or false.
11495
*/
11596
public void setStrictCompletion(boolean strictCompletion) {
11697
getAutoCompletion().setStrictCompletion(strictCompletion);

src/main/java/mediathek/gui/tabs/tab_film/filter/SwingFilterDialog.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,6 @@ private void setupThemaComboBox() {
241241
var sel = (String) jcbThema.getSelectedItem();
242242
if (sel != null) {
243243
filterConfig.setThema(sel);
244-
System.out.println("Thema: " + sel);
245244
}
246245
MessageBus.getMessageBus().publish(new ReloadTableDataEvent());
247246
});

0 commit comments

Comments
 (0)