Skip to content

Commit

Permalink
8235150: IosApplication does not pass the required object in _leaveNe…
Browse files Browse the repository at this point in the history
…stedEventLoopImpl

Reviewed-by: jvos
  • Loading branch information
Jose Pereda authored and Johan Vos committed Dec 5, 2019
1 parent 1c27fbd commit a68347c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ protected File staticCommonDialogs_showFolderChooser(Window owner, String folder
}

private native Object _enterNestedEventLoopImpl();
private native void _leaveNestedEventLoopImpl();
private native void _leaveNestedEventLoopImpl(Object retValue);

@Override
protected Object _enterNestedEventLoop() {
Expand All @@ -197,7 +197,7 @@ protected Object _enterNestedEventLoop() {

@Override
protected void _leaveNestedEventLoop(Object retValue) {
_leaveNestedEventLoopImpl();
_leaveNestedEventLoopImpl(retValue);
}

@Override
Expand Down

0 comments on commit a68347c

Please sign in to comment.