Skip to content

Commit 6c8b064

Browse files
authored
Merge pull request #872 from processing/imkclient-fix
Fix for IMKClient and IMKInputSession warning messages
2 parents 31195d0 + 1e1b3c5 commit 6c8b064

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

java/src/processing/mode/java/runner/Runner.java

+5
Original file line numberDiff line numberDiff line change
@@ -952,6 +952,11 @@ synchronized public void message(String s) {
952952
// System.err.println("message " + s.length() + ":" + s);
953953
// }
954954

955+
// Ignore the warnings on macOS Sequoia to prevent confusion: https://github.com/processing/processing4/issues/864
956+
if(s.contains("+[IMKClient subclass]:") || s.contains("+[IMKInputSession subclass]:")){
957+
return;
958+
}
959+
955960
// always shove out the message, since it might not fall under
956961
// the same setup as we're expecting
957962
sketchErr.print(s);

0 commit comments

Comments
 (0)