matthiasblaesing commented on code in PR #6391:
URL: https://github.com/apache/netbeans/pull/6391#discussion_r1313469357


##########
platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/Installer.java:
##########
@@ -43,6 +47,8 @@ public void validate() throws IllegalStateException {
         UIManager.installLookAndFeel(new 
UIManager.LookAndFeelInfo(Bundle.LBL_FLATLAF_DARK(), 
FlatDarkLaf.class.getName()));
         UIManager.installLookAndFeel(new 
UIManager.LookAndFeelInfo(Bundle.LBL_FLATLAF_CUPERTINO_LIGHT(), 
FlatMacLightLaf.class.getName()));
         UIManager.installLookAndFeel(new 
UIManager.LookAndFeelInfo(Bundle.LBL_FLATLAF_CUPERTINO_DARK(), 
FlatMacDarkLaf.class.getName()));
+        System.out.println("FlatLaf: installer");

Review Comment:
   Please remove or replace with logger on level FINE



##########
platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/Installer.java:
##########
@@ -62,4 +68,22 @@ public void validate() throws IllegalStateException {
         System.setProperty( "flatlaf.updateUIOnSystemFontChange", "false" );
     }
 
+    public static class Listerner implements PropertyChangeListener {
+
+        @Override
+        public void propertyChange(PropertyChangeEvent pce) {
+            System.out.println("FlatLaf: " + pce.getSource() + "." + 
pce.getPropertyName());
+            if ("lookAndFeel".equals(pce.getPropertyName())) { //NOI18N
+                if 
(FlatLaf.class.isAssignableFrom(UIManager.getLookAndFeel().getClass())
+                    && FlatLafPrefs.isUseWindowDecorations()
+                    && SystemInfo.isLinux) {
+
+                    System.out.println("FlatLaf: 
setDefaultLookAndFeelDecorated(true)");

Review Comment:
   Please remove or replace with logger on level FINE



##########
platform/o.n.swing.laf.flatlaf/src/org/netbeans/swing/laf/flatlaf/Installer.java:
##########
@@ -62,4 +68,22 @@ public void validate() throws IllegalStateException {
         System.setProperty( "flatlaf.updateUIOnSystemFontChange", "false" );
     }
 
+    public static class Listerner implements PropertyChangeListener {
+
+        @Override
+        public void propertyChange(PropertyChangeEvent pce) {
+            System.out.println("FlatLaf: " + pce.getSource() + "." + 
pce.getPropertyName());

Review Comment:
   Please remove or replace with logger on level FINE



-- 
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

Reply via email to