Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2010-12-22 10:10:10 +0000
committerEike Stepper2010-12-22 10:10:10 +0000
commitff128e9fdf823dad08f92d68ff95eaaddce478bc (patch)
tree1dbd107602f0553be5f935adf72d07cc8f6e6e0d /plugins/org.gastro.rcp.table
parente89b4d46b027d0a192902534151b800e1e2e9ca5 (diff)
downloadcdo-ff128e9fdf823dad08f92d68ff95eaaddce478bc.tar.gz
cdo-ff128e9fdf823dad08f92d68ff95eaaddce478bc.tar.xz
cdo-ff128e9fdf823dad08f92d68ff95eaaddce478bc.zip
Don't use System.err
Diffstat (limited to 'plugins/org.gastro.rcp.table')
-rw-r--r--plugins/org.gastro.rcp.table/src/com/swtdesigner/SWTResourceManager.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/org.gastro.rcp.table/src/com/swtdesigner/SWTResourceManager.java b/plugins/org.gastro.rcp.table/src/com/swtdesigner/SWTResourceManager.java
index 4e41d978de..d00071980f 100644
--- a/plugins/org.gastro.rcp.table/src/com/swtdesigner/SWTResourceManager.java
+++ b/plugins/org.gastro.rcp.table/src/com/swtdesigner/SWTResourceManager.java
@@ -1,5 +1,7 @@
package com.swtdesigner;
+import org.eclipse.net4j.util.io.IOUtil;
+
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Font;
@@ -440,7 +442,7 @@ public class SWTResourceManager
}
catch (Throwable e)
{
- System.err.println("Unable to set underline or strikeout" + " (probably on a non-Windows platform). " + e); //$NON-NLS-1$ //$NON-NLS-2$
+ IOUtil.ERR().println("Unable to set underline or strikeout" + " (probably on a non-Windows platform). " + e); //$NON-NLS-1$ //$NON-NLS-2$
}
}

Back to the top