< prev index next >

test/jdk/tools/launcher/TestHelper.java

Print this page
rev 59383 : [mq]: final

@@ -83,22 +83,18 @@
             System.getProperty("os.name", "unknown").contains("OS X");
     static final boolean is64Bit =
             System.getProperty("sun.arch.data.model").equals("64");
     static final boolean is32Bit =
             System.getProperty("sun.arch.data.model").equals("32");
-    static final boolean isSolaris =
-            System.getProperty("os.name", "unknown").startsWith("SunOS");
     static final boolean isLinux =
             System.getProperty("os.name", "unknown").startsWith("Linux");
     static final boolean isAIX =
             System.getProperty("os.name", "unknown").startsWith("AIX");
     static final String LIBJVM = isWindows
                         ? "jvm.dll"
                         : "libjvm" + (isMacOSX ? ".dylib" : ".so");
 
-    static final boolean isSparc = System.getProperty("os.arch").startsWith("sparc");
-
     // make a note of the golden default locale
     static final Locale DefaultLocale = Locale.getDefault();
 
     static final String JAVA_FILE_EXT   = ".java";
     static final String CLASS_FILE_EXT  = ".class";
< prev index next >