aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorJeff Ames2008-05-16 13:33:57 +0000
committerJeff Ames2008-05-16 13:33:57 +0000
commit7fefb80abbde4bd8a9b19cb631736b5860274134 (patch)
treeb10ad0bb4a7e19bcdca675126320858b3427894f /OpenSim/Framework
parentSet svn:ignore. Minor formatting cleanup. (diff)
downloadopensim-SC_OLD-7fefb80abbde4bd8a9b19cb631736b5860274134.zip
opensim-SC_OLD-7fefb80abbde4bd8a9b19cb631736b5860274134.tar.gz
opensim-SC_OLD-7fefb80abbde4bd8a9b19cb631736b5860274134.tar.bz2
opensim-SC_OLD-7fefb80abbde4bd8a9b19cb631736b5860274134.tar.xz
Minor cleanup.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Util.cs7
1 files changed, 3 insertions, 4 deletions
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
58 private static string regexInvalidPathChars = "[" + new String(Path.GetInvalidPathChars()) + "]"; 58 private static string regexInvalidPathChars = "[" + new String(Path.GetInvalidPathChars()) + "]";
59 private static object XferLock = new object(); 59 private static object XferLock = new object();
60 60
61 #region Vector Equasions 61 #region Vector Equations
62 62
63 /// <summary> 63 /// <summary>
64 /// Get the distance between two 3d vectors 64 /// Get the distance between two 3d vectors
@@ -214,8 +214,8 @@ namespace OpenSim.Framework
214 } 214 }
215 215
216 // Windows 2000 / Pre-SP2 XP 216 // Windows 2000 / Pre-SP2 XP
217 if (Environment.OSVersion.Version.Major == 5 && ( 217 if (Environment.OSVersion.Version.Major == 5 &&
218 Environment.OSVersion.Version.Minor == 0)) 218 Environment.OSVersion.Version.Minor == 0)
219 { 219 {
220 reason = "Please update to Windows XP Service Pack 2 or Server2003"; 220 reason = "Please update to Windows XP Service Pack 2 or Server2003";
221 return false; 221 return false;
@@ -544,7 +544,6 @@ namespace OpenSim.Framework
544 /// <summary> 544 /// <summary>
545 /// returns the contents of /etc/issue on Unix Systems 545 /// returns the contents of /etc/issue on Unix Systems
546 /// Use this for where it's absolutely necessary to implement platform specific stuff 546 /// Use this for where it's absolutely necessary to implement platform specific stuff
547 /// ( like the ODE library :P
548 /// </summary> 547 /// </summary>
549 /// <returns></returns> 548 /// <returns></returns>
550 public static string ReadEtcIssue() 549 public static string ReadEtcIssue()