1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-08-13 16:53:51 -04:00

Revert 1.7 test on SWT, tray implementation is still broken on Linux

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1817 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2011-10-11 22:17:21 +00:00
parent 8f43693ef5
commit 5852fe662b

View File

@ -225,18 +225,16 @@ public final class DavGatewayTray {
*/ */
public static void init() { public static void init() {
if (!Settings.getBooleanProperty("davmail.server")) { if (!Settings.getBooleanProperty("davmail.server")) {
// first try to load SWT before with Java before 1.7 // first try to load SWT before with Java
if ("1.7".compareTo(System.getProperty("java.specification.version")) > 0) { ClassLoader classloader = DavGatewayTray.class.getClassLoader();
ClassLoader classloader = DavGatewayTray.class.getClassLoader(); try {
try { // trigger ClassNotFoundException
// trigger ClassNotFoundException classloader.loadClass("org.eclipse.swt.SWT");
classloader.loadClass("org.eclipse.swt.SWT"); // SWT available, create tray
// SWT available, create tray davGatewayTray = new SwtGatewayTray();
davGatewayTray = new SwtGatewayTray(); davGatewayTray.init();
davGatewayTray.init(); } catch (ClassNotFoundException e) {
} catch (ClassNotFoundException e) { DavGatewayTray.info(new BundleMessage("LOG_SWT_NOT_AVAILABLE"));
DavGatewayTray.info(new BundleMessage("LOG_SWT_NOT_AVAILABLE"));
}
} }
// try java6 tray support // try java6 tray support
if (davGatewayTray == null) { if (davGatewayTray == null) {