libbluray | branch: master | hpi1 <[email protected]> | Thu Oct 8 14:46:37 2015 +0300| [ce3a16222d1e4d6a9bdfbba9fff0d158e057b2d1] | committer: hpi1
IxcRegistry: both contexts are required > http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=ce3a16222d1e4d6a9bdfbba9fff0d158e057b2d1 --- src/libbluray/bdj/java/org/videolan/IxcRegistryImpl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libbluray/bdj/java/org/videolan/IxcRegistryImpl.java b/src/libbluray/bdj/java/org/videolan/IxcRegistryImpl.java index 226d359..85e08dc 100644 --- a/src/libbluray/bdj/java/org/videolan/IxcRegistryImpl.java +++ b/src/libbluray/bdj/java/org/videolan/IxcRegistryImpl.java @@ -276,9 +276,11 @@ public class IxcRegistryImpl { callerContext = BDJXletContext.getCurrentContext(); if (callerContext == null) { logger.error("caller context is null"); + throw new RemoteException("no caller context"); } if (context == null) { logger.error("callee context is null"); + throw new RemoteException("no callee context"); } calleeContext = context; _______________________________________________ libbluray-devel mailing list [email protected] https://mailman.videolan.org/listinfo/libbluray-devel
