diff options
Diffstat (limited to 'jurt')
-rw-r--r-- | jurt/com/sun/star/lib/uno/environments/remote/Job.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/jurt/com/sun/star/lib/uno/environments/remote/Job.java b/jurt/com/sun/star/lib/uno/environments/remote/Job.java index 281c4df3d908..e95f5f42fd2b 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/Job.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/Job.java @@ -109,8 +109,7 @@ public class Job { // Here we have to be aware of non-UNO exceptions, because // they may kill a remote side which does not know anything // about their types: - if (exception != null - && !(exception instanceof com.sun.star.uno.Exception) + if (!(exception instanceof com.sun.star.uno.Exception) && !(exception instanceof com.sun.star.uno.RuntimeException)) { |