Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdan Gheorghe2010-07-23 22:21:42 +0000
committerBogdan Gheorghe2010-07-23 22:21:42 +0000
commit50badbea8e2d828b9b50a39c97f1c3ebb6b4aa3b (patch)
tree797b6bc0417487537eecece5ea3b6248df71d579 /bundles/org.eclipse.e4.ui.css.swt
parentbc5b6342405ca369cf7d976796b68c659b8021e8 (diff)
downloadeclipse.platform.ui-50badbea8e2d828b9b50a39c97f1c3ebb6b4aa3b.tar.gz
eclipse.platform.ui-50badbea8e2d828b9b50a39c97f1c3ebb6b4aa3b.tar.xz
eclipse.platform.ui-50badbea8e2d828b9b50a39c97f1c3ebb6b4aa3b.zip
Removed verbose warning
Diffstat (limited to 'bundles/org.eclipse.e4.ui.css.swt')
-rw-r--r--bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/GradientBackgroundListener.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/GradientBackgroundListener.java b/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/GradientBackgroundListener.java
index 4668235dd6d..5a898327467 100644
--- a/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/GradientBackgroundListener.java
+++ b/bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/GradientBackgroundListener.java
@@ -56,8 +56,8 @@ public class GradientBackgroundListener implements Listener {
.forName("java.awt.RadialGradientPaint"); //$NON-NLS-1$
isRadialSupported = true;
} catch (Exception e) {
- System.err
- .println("Warning - radial gradients are only supported in Java 6 and higher, using linear gradient instead"); //$NON-NLS-1$
+// System.err
+// .println("Warning - radial gradients are only supported in Java 6 and higher, using linear gradient instead"); //$NON-NLS-1$
isRadialSupported = false;
}

Back to the top