Skip to content

Commit 353767f

Browse files
committed
suppress java.lang.NoSuchMethodError: accessibilityHitTest error (resolves #368)
1 parent a8c880b commit 353767f

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

app/src/processing/app/ui/EditorConsole.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,11 @@ private boolean suppressMessage(String what, boolean err) {
234234
} else if (what.contains("XInitThreads() called for concurrent")) {
235235
// "Info: XInitThreads() called for concurrent Thread support" message on Linux
236236
return true;
237+
238+
} else if (what.contains("accessibilityHitTest")) {
239+
// "java.lang.NoSuchMethodError: accessibilityHitTest"
240+
// https://github.com/processing/processing4/issues/368
241+
return true;
237242
}
238243
} else { // !err
239244
if (what.contains("Listening for transport dt_socket at address")) {

todo.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ X support multiple files passed on command line
1111
X only show setWritable() failure in recent.txt when it is a problem
1212
X NullPointerException when changing the theme
1313
X https://github.com/processing/processing4/issues/476
14+
X suppress java.lang.NoSuchMethodError: accessibilityHitTest error
15+
X https://github.com/processing/processing4/issues/368
1416

1517
design
1618
X set minimum size for scroll bar thumb

0 commit comments

Comments
 (0)