[Remoterengine-commits] r186 - pkg/RemoteREngine/inst/java_src/src/client/org/rosuda/REngine/remote/client
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Fri Sep 25 16:14:55 CEST 2009
Author: ian_long
Date: 2009-09-25 16:14:55 +0200 (Fri, 25 Sep 2009)
New Revision: 186
Modified:
pkg/RemoteREngine/inst/java_src/src/client/org/rosuda/REngine/remote/client/RemoteREngine.java
Log:
Fix typo which prevented a new exception getting thrown if the Engine initialisation encountered a problem
Modified: pkg/RemoteREngine/inst/java_src/src/client/org/rosuda/REngine/remote/client/RemoteREngine.java
===================================================================
--- pkg/RemoteREngine/inst/java_src/src/client/org/rosuda/REngine/remote/client/RemoteREngine.java 2009-09-23 20:20:34 UTC (rev 185)
+++ pkg/RemoteREngine/inst/java_src/src/client/org/rosuda/REngine/remote/client/RemoteREngine.java 2009-09-25 14:14:55 UTC (rev 186)
@@ -141,7 +141,7 @@
valid = testConnection();
} catch (Throwable e){
- new REngineConnectException("Unable to connect to R server "+registryHost+":"+port+"/"+name, e);
+ throw new REngineConnectException("Unable to connect to R server "+registryHost+":"+port+"/"+name, e);
}
shutdownHook = new RemoteREngineShutdownHook();
More information about the Remoterengine-commits
mailing list