mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 13:49:18 +01:00
Fix NPE while logging exceptions in JavaTextArea
This commit is contained in:
@@ -372,7 +372,7 @@ public class JavaTextArea extends JEditTextArea {
|
||||
}
|
||||
});
|
||||
} catch (Exception e) {
|
||||
Messages.loge("error while preparing suggestions", e.getCause());
|
||||
Messages.loge("error while preparing suggestions", e);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user