Skip to content

Commit 1e1b3c5

Browse files
authored
Update Runner.java
1 parent 162554f commit 1e1b3c5

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)