Changeset 208 for trunk/openjdk/jdk/src/share/classes
- Timestamp:
- Dec 10, 2010, 5:58:20 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/src/share/classes/java/awt/SplashScreen.java
r2 r208 109 109 // SplashScreen class is now a singleton 110 110 if (!wasClosed && theInstance == null) { 111 java.security.AccessController.doPrivileged( 111 if (System.getProperty("os.name").startsWith("OS/2")) { 112 java.security.AccessController.doPrivileged( 113 new sun.security.action.LoadLibraryAction("splshscr")); 114 } else { 115 java.security.AccessController.doPrivileged( 112 116 new sun.security.action.LoadLibraryAction("splashscreen")); 117 } 113 118 long ptr = _getInstance(); 114 119 if (ptr != 0 && _isVisible(ptr)) {
Note:
See TracChangeset
for help on using the changeset viewer.