From 7fefb80abbde4bd8a9b19cb631736b5860274134 Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Fri, 16 May 2008 13:33:57 +0000 Subject: Minor cleanup. --- OpenSim/Framework/Util.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index 8e5b02d..719dda6 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs @@ -58,7 +58,7 @@ namespace OpenSim.Framework private static string regexInvalidPathChars = "[" + new String(Path.GetInvalidPathChars()) + "]"; private static object XferLock = new object(); - #region Vector Equasions + #region Vector Equations /// /// Get the distance between two 3d vectors @@ -214,8 +214,8 @@ namespace OpenSim.Framework } // Windows 2000 / Pre-SP2 XP - if (Environment.OSVersion.Version.Major == 5 && ( - Environment.OSVersion.Version.Minor == 0)) + if (Environment.OSVersion.Version.Major == 5 && + Environment.OSVersion.Version.Minor == 0) { reason = "Please update to Windows XP Service Pack 2 or Server2003"; return false; @@ -544,7 +544,6 @@ namespace OpenSim.Framework /// /// returns the contents of /etc/issue on Unix Systems /// Use this for where it's absolutely necessary to implement platform specific stuff - /// ( like the ODE library :P /// /// public static string ReadEtcIssue() -- cgit v1.1