JRE-377 Allow dark decorations on Mac OS X (disabled because of XCode4 compilation)
diff --git a/src/macosx/native/sun/awt/AWTWindow.m b/src/macosx/native/sun/awt/AWTWindow.m
index f778eb5..3f870b1 100644
--- a/src/macosx/native/sun/awt/AWTWindow.m
+++ b/src/macosx/native/sun/awt/AWTWindow.m
@@ -275,11 +275,11 @@
         }
     }
 
-    if (IS(self.styleBits, DARK)) {
+    /*if (IS(self.styleBits, DARK)) {
         [self.nsWindow setAppearance:[NSAppearance appearanceNamed:NSAppearanceNameVibrantDark]];
     } else {
         [self.nsWindow setAppearance:[NSAppearance appearanceNamed:NSAppearanceNameVibrantLight]];
-    }
+    }*/
 
 }