-
Notifications
You must be signed in to change notification settings - Fork 46
Remove applet functionality #62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
a01504a
06f0200
06267e8
591ab4b
e967aca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,20 +48,11 @@ | |
public class CORBASupport { | ||
|
||
/** | ||
* Return a static reference to the ORB. Figures out which environment | ||
* (applet or application) the jre is in, and initialize the orb accordingly. | ||
* Return a static reference to the initialized ORB. | ||
*/ | ||
public ORB initORB(String[] args) { | ||
|
||
Debug.message("corba", "CORBAManager.getORB(): initializing ORB"); | ||
if (Environment.isApplet()) { | ||
// initialize the Environment with the properties passed | ||
// in. | ||
if (Debug.debugging("corba")) { | ||
System.out.println("CORBAManager: initializing applet"); | ||
} | ||
return ORB.init(Environment.getApplet(), Environment.getProperties()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note that the ORB class has references to an Applet. Attempting to use CORBASupport will result in a NoClassDefFoundError at runtime. Hopefully there will be updated CORBA releases that remove the Applet references. |
||
} | ||
|
||
if (Debug.debugging("corba")) { | ||
System.out.println("CORBAManager: initializing application"); | ||
|
Uh oh!
There was an error while loading. Please reload this page.