]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.fastlz/src/org/simantics/fastlz/OSType.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.fastlz / src / org / simantics / fastlz / OSType.java
index 0ea40b52a75ec1d561197019e33578b0cadc5a41..39abe6ff9350eb58ef7b2b542b7e675e643d96f0 100644 (file)
@@ -1,34 +1,34 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.fastlz;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public enum OSType {\r
-    APPLE, LINUX, SUN, WINDOWS, UNKNOWN;\r
-\r
-    public static OSType calculate() {\r
-        String osName = System.getProperty("os.name");\r
-        assert osName != null;\r
-        osName = osName.toLowerCase();\r
-        if (osName.startsWith("mac os x"))\r
-            return APPLE;\r
-        if (osName.startsWith("windows"))\r
-            return WINDOWS;\r
-        if (osName.startsWith("linux"))\r
-            return LINUX;\r
-        if (osName.startsWith("sun"))\r
-            return SUN;\r
-        return UNKNOWN;\r
-    }\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * 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
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.fastlz;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public enum OSType {
+    APPLE, LINUX, SUN, WINDOWS, UNKNOWN;
+
+    public static OSType calculate() {
+        String osName = System.getProperty("os.name");
+        assert osName != null;
+        osName = osName.toLowerCase();
+        if (osName.startsWith("mac os x"))
+            return APPLE;
+        if (osName.startsWith("windows"))
+            return WINDOWS;
+        if (osName.startsWith("linux"))
+            return LINUX;
+        if (osName.startsWith("sun"))
+            return SUN;
+        return UNKNOWN;
+    }
 }
\ No newline at end of file