diff options
author | Sean Dague | 2007-08-01 21:28:34 +0000 |
---|---|---|
committer | Sean Dague | 2007-08-01 21:28:34 +0000 |
commit | 32565509e24dd13fe2255f9368df9ef90e2d0a40 (patch) | |
tree | 717626f6d2d4659e70d5365aa63d1fdf1de24764 | |
parent | * Terrain engine now knows the region coordinates - this can be later used to... (diff) | |
download | opensim-SC_OLD-32565509e24dd13fe2255f9368df9ef90e2d0a40.zip opensim-SC_OLD-32565509e24dd13fe2255f9368df9ef90e2d0a40.tar.gz opensim-SC_OLD-32565509e24dd13fe2255f9368df9ef90e2d0a40.tar.bz2 opensim-SC_OLD-32565509e24dd13fe2255f9368df9ef90e2d0a40.tar.xz |
Commiting whitespace changes, as this used hard tabs instead of the
4 spaces found everywhere else.
-rw-r--r-- | OpenSim/Framework/Console/MainLog.cs | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/OpenSim/Framework/Console/MainLog.cs b/OpenSim/Framework/Console/MainLog.cs index e6bf9d9..c246b7d 100644 --- a/OpenSim/Framework/Console/MainLog.cs +++ b/OpenSim/Framework/Console/MainLog.cs | |||
@@ -27,21 +27,15 @@ | |||
27 | */ | 27 | */ |
28 | namespace OpenSim.Framework.Console | 28 | namespace OpenSim.Framework.Console |
29 | { | 29 | { |
30 | public class MainLog { | 30 | public class MainLog { |
31 | 31 | ||
32 | private static LogBase instance; | 32 | private static LogBase instance; |
33 | 33 | ||
34 | public static LogBase Instance | 34 | public static LogBase Instance |
35 | { | 35 | { |
36 | get | 36 | get { return instance; } |
37 | { | 37 | set { instance = value; } |
38 | return instance; | 38 | } |
39 | } | ||
40 | set | ||
41 | { | ||
42 | instance = value; | ||
43 | } | ||
44 | } | ||
45 | } | 39 | } |
46 | 40 | ||
47 | } | 41 | } |