mbien commented on code in PR #9314:
URL: https://github.com/apache/netbeans/pull/9314#discussion_r3057686005
##########
platform/core.startup/src/org/netbeans/core/startup/Main.java:
##########
@@ -363,6 +366,24 @@ private static final Class getKlass(String cls) {
}
}
+ // moved from MainWindow::init to handle splash, etc.
+ private static void configureAWTAppClassName() {
+ Toolkit toolkit = Toolkit.getDefaultToolkit();
+ Class<?> xtoolkit = toolkit.getClass();
+ if (xtoolkit.getName().equals("sun.awt.X11.XToolkit")) { //NOI18N
+ // TODO those add --add-opens=java.desktop/sun.awt.X11=ALL-UNNAMED
+
+ //#183739 / JDK-6528430 - provide proper app name on Linux
+ try {
+ final Field awtAppClassName =
xtoolkit.getDeclaredField("awtAppClassName"); //NOI18N
Review Comment:
startup metrics for this:
- getLocalGraphicsEnvironment() 23 ms
- configureAWTAppClassName() 9 ms
i am wondering if this too could be queued onto EDT so that it executes
before splash. The reason why this block existed seems to be (see comment
above) to log a custom msg if JDK can't initialize graphics. This might not be
a big concern anymore.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists