mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 18:25:33 +08:00
Massive tab and trailing space cleanup
This commit is contained in:
@@ -91,7 +91,7 @@ namespace OpenSim.Framework
|
||||
string[] parts = str.Split(',');
|
||||
if (parts.Length != 3)
|
||||
throw new ArgumentException("Invalid string: " + str);
|
||||
|
||||
|
||||
SpawnPoint sp = new SpawnPoint();
|
||||
sp.Yaw = float.Parse(parts[0]);
|
||||
sp.Pitch = float.Parse(parts[1]);
|
||||
@@ -105,7 +105,7 @@ namespace OpenSim.Framework
|
||||
public delegate void SaveDelegate(RegionSettings rs);
|
||||
|
||||
public event SaveDelegate OnSave;
|
||||
|
||||
|
||||
/// <value>
|
||||
/// These appear to be terrain textures that are shipped with the client.
|
||||
/// </value>
|
||||
@@ -454,24 +454,24 @@ namespace OpenSim.Framework
|
||||
get { return m_LoadedCreationDateTime; }
|
||||
set { m_LoadedCreationDateTime = value; }
|
||||
}
|
||||
|
||||
|
||||
public String LoadedCreationDate
|
||||
{
|
||||
get
|
||||
{
|
||||
get
|
||||
{
|
||||
TimeSpan ts = new TimeSpan(0, 0, LoadedCreationDateTime);
|
||||
DateTime stamp = new DateTime(1970, 1, 1) + ts;
|
||||
return stamp.ToLongDateString();
|
||||
return stamp.ToLongDateString();
|
||||
}
|
||||
}
|
||||
|
||||
public String LoadedCreationTime
|
||||
{
|
||||
get
|
||||
{
|
||||
get
|
||||
{
|
||||
TimeSpan ts = new TimeSpan(0, 0, LoadedCreationDateTime);
|
||||
DateTime stamp = new DateTime(1970, 1, 1) + ts;
|
||||
return stamp.ToLongTimeString();
|
||||
return stamp.ToLongTimeString();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user