Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlexander Kurtakov2018-03-23 13:34:57 +0000
committerAlexander Kurtakov2018-03-23 13:34:57 +0000
commit05c3d136c9a5eecbcf1c9652a188bfe37b09cadb (patch)
treef2560af1c9ac1534305ae90844c217b64453c724 /tests
parente061a646a35408e4c4cbd20733baa1f7e304be3e (diff)
downloadeclipse.platform.swt-05c3d136c9a5eecbcf1c9652a188bfe37b09cadb.tar.gz
eclipse.platform.swt-05c3d136c9a5eecbcf1c9652a188bfe37b09cadb.tar.xz
eclipse.platform.swt-05c3d136c9a5eecbcf1c9652a188bfe37b09cadb.zip
Bug 532825 - Remove hpux/solaris clutter in the codebase
Change-Id: I735be5853d393097c7d11c9abb43e9e5cbf93c8d Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/SwtTestUtil.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/SwtTestUtil.java b/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/SwtTestUtil.java
index 2a3d254f9c..22b53d38cb 100644
--- a/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/SwtTestUtil.java
+++ b/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/SwtTestUtil.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2017 IBM Corporation and others.
+ * Copyright (c) 2000, 2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -68,8 +68,6 @@ public class SwtTestUtil {
public final static boolean isWindowsOS = System.getProperty("os.name").startsWith("Windows");
public final static boolean isLinux = System.getProperty("os.name").equals("Linux");
public final static boolean isAIX = System.getProperty("os.name").equals("AIX");
- public final static boolean isSolaris = System.getProperty("os.name").equals("Solaris") || System.getProperty("os.name").equals("SunOS");
- public final static boolean isHPUX = System.getProperty("os.name").equals("HP-UX");
public final static boolean isRunningOnEclipseOrgHudsonGTK = isGTK
&& ("hudsonbuild".equalsIgnoreCase(System.getProperty("user.name"))

Back to the top