< prev index next >

src/java.desktop/share/classes/sun/awt/OSInfo.java

Print this page
rev 59106 : imported patch client

*** 36,46 **** */ public class OSInfo { public static enum OSType { WINDOWS, LINUX, - SOLARIS, MACOSX, AIX, UNKNOWN } --- 36,45 ----
*** 98,111 **** if (osName.contains("Linux")) { return LINUX; } - if (osName.contains("Solaris") || osName.contains("SunOS")) { - return SOLARIS; - } - if (osName.contains("OS X")) { return MACOSX; } if (osName.contains("AIX")) { --- 97,106 ----
< prev index next >