File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/java.desktop/macosx/native/libawt_lwawt/awt Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -115,9 +115,7 @@ + (void) _nativeNotifyPeerWithView:(AWTView *)view inputMethod:(jobject) inputMe
115115 AWT_ASSERT_APPKIT_THREAD;
116116
117117 if (!view) return ;
118- if (!inputMethod) return ;
119-
120- [view setInputMethod: inputMethod]; // inputMethod is a GlobalRef
118+ [view setInputMethod: inputMethod]; // inputMethod is a GlobalRef or null to disable.
121119}
122120
123121+ (void ) _nativeEndComposition : (AWTView *)view {
Original file line number Diff line number Diff line change @@ -259,6 +259,7 @@ BOOL isSWTInWebStart(JNIEnv* env) {
259259
260260static void AWT_NSUncaughtExceptionHandler (NSException *exception) {
261261 NSLog (@" Apple AWT Internal Exception: %@ " , [exception description ]);
262+ NSLog (@" trace: %@ " , [exception callStackSymbols ]);
262263}
263264
264265@interface AWTStarter : NSObject
You can’t perform that action at this time.
0 commit comments