From 59f2df90862aab764661de079b4f4be687d1ac18 Mon Sep 17 00:00:00 2001 From: Jeroen Ketelaar Date: Fri, 7 Mar 2014 12:58:50 +0100 Subject: [PATCH] Removed operating system check --- parabotv2/src/org/parabot/core/Core.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/parabotv2/src/org/parabot/core/Core.java b/parabotv2/src/org/parabot/core/Core.java index c4f4a04..cd805fb 100644 --- a/parabotv2/src/org/parabot/core/Core.java +++ b/parabotv2/src/org/parabot/core/Core.java @@ -15,7 +15,6 @@ public class Core { private static boolean verbose; private static boolean dump; private static boolean loadLocal; //Loads both local and public scripts/servers - private static String OS = System.getProperty("os.name").toLowerCase(); /** * Enabled loadLocal mode @@ -87,16 +86,6 @@ public class Core { } } - /** - * Determines if user is using a windows OS - * @return true if user is using a windows OS - */ - public static boolean isWindows() { - - return (OS.indexOf("win") >= 0); - - } - /** * Checks for updates. *