Skip to content

Commit 1946569

Browse files
committed
remove debug logging
1 parent 5e288e9 commit 1946569

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ plugins {
1616
val ciRun = System.getenv().containsKey("GITHUB_ACTIONS")
1717

1818
group = "dev.isxander"
19-
version = "1.4.4"
19+
version = "1.4.5"
2020

2121
if (ciRun)
2222
version = "$version-SNAPSHOT"

changelogs/1.4.5.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Remove debug logging

src/main/java/dev/isxander/yacl/gui/OptionListWidget.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,6 @@ public boolean charTyped(char chr, int modifiers) {
290290
@Override
291291
public boolean isViewable() {
292292
String query = yaclScreen.searchFieldWidget.getText();
293-
System.out.println(viewableSupplier.get());
294293
return viewableSupplier.get()
295294
&& (yaclScreen.searchFieldWidget.isEmpty()
296295
|| (!singleCategory && categoryName.contains(query))

0 commit comments

Comments
 (0)