Style fixes
This commit is contained in:
@@ -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 = "| ";
|
||||||
|
|||||||
Reference in New Issue
Block a user