Skip to content
Snippets Groups Projects
Commit 22a53f43 authored by pompert's avatar pompert
Browse files

701

Additions:
- None
Mods:
- Made the getOTDBrmi method pass on the static connection to OTDB, instead of a potentially dangerous non-static version of it.
Removals:
-getStaticOTDBrmi no longer necessary
parent 5c41d69e
No related branches found
No related tags found
No related merge requests found
......@@ -78,23 +78,14 @@ public class SharedVars {
*
* @return the OtdbRmi object
*/
public OtdbRmi getOTDBrmi() {
public static OtdbRmi getOTDBrmi() {
return itsOtdbRmi;
}
/** gets OTDBrmi
* OTBrmi holds all JNI/RMI connections
*
* @return the OtdbRmi object
*/
public static OtdbRmi getStaticOTDBrmi() {
return itsOtdbRmi;
}
/** gets OTDBrmi
* OTBrmi holds all JNI/RMI connections
*
* @return the OtdbRmi object
*/
public static jParmFacade getJParmFacade() {
if(itsjParmFacade == null){
System.loadLibrary("jparmfacade");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment