Style fixes

This commit is contained in:
Pavlos Touboulidis
2014-04-26 02:05:06 +03:00
parent 603dd1d866
commit e6dddf3704

View File

@@ -10,6 +10,7 @@
using System; using System;
using System.Linq; using System.Linq;
using System.Threading;
namespace OpenRA.Support namespace OpenRA.Support
{ {
@@ -21,8 +22,8 @@ namespace OpenRA.Support
// //
// Hacks to give the output a tree-like structure // Hacks to give the output a tree-like structure
// //
static System.Threading.ThreadLocal<int> depth = new System.Threading.ThreadLocal<int>(); static ThreadLocal<int> depth = new ThreadLocal<int>();
static System.Threading.ThreadLocal<string> prevHeader = new System.Threading.ThreadLocal<string>(); static ThreadLocal<string> prevHeader = new ThreadLocal<string>();
const int MaxWidth = 60, Digits = 6; const int MaxWidth = 60, Digits = 6;
const int MaxIndentedLabel = MaxWidth - Digits; const int MaxIndentedLabel = MaxWidth - Digits;
const string IndentationString = "| "; const string IndentationString = "| ";