Browse Source

Use tabs instead of spaces.

pull/863/head
Daniel Grunwald 8 years ago
parent
commit
c2ac9c374c
  1. 2
      BuildTools/tidy.py
  2. 2
      ICSharpCode.Decompiler.Tests/CorrectnessTestRunner.cs
  3. 4
      ICSharpCode.Decompiler.Tests/Stub.cs
  4. 4
      ICSharpCode.Decompiler.Tests/TestCases/ILPretty/Issue379.cs

2
BuildTools/tidy.py

@ -13,7 +13,7 @@ def main():
root_dir = os.path.normpath(os.path.join(os.path.dirname(__file__), '..')) root_dir = os.path.normpath(os.path.join(os.path.dirname(__file__), '..'))
dirs_to_check = ( dirs_to_check = (
os.path.join(root_dir, subdir) os.path.join(root_dir, subdir)
for subdir in ('ICSharpCode.Decompiler', 'ILSpy', 'ILSpy.BamlDecompiler')) for subdir in ('ICSharpCode.Decompiler', 'ICSharpCode.Decompiler.Tests', 'ILSpy', 'ILSpy.BamlDecompiler'))
ok = True ok = True
for dir in dirs_to_check: for dir in dirs_to_check:
for root, dirs, files in os.walk(dir): for root, dirs, files in os.walk(dir):

2
ICSharpCode.Decompiler.Tests/CorrectnessTestRunner.cs

@ -25,7 +25,7 @@ using NUnit.Framework;
namespace ICSharpCode.Decompiler.Tests namespace ICSharpCode.Decompiler.Tests
{ {
[TestFixture] [TestFixture]
public class CorrectnessTestRunner public class CorrectnessTestRunner
{ {
const string TestCasePath = DecompilerTestBase.TestCasePath + "/Correctness"; const string TestCasePath = DecompilerTestBase.TestCasePath + "/Correctness";

4
ICSharpCode.Decompiler.Tests/Stub.cs

@ -21,10 +21,10 @@ using System;
namespace ICSharpCode.Decompiler.Tests namespace ICSharpCode.Decompiler.Tests
{ {
class Stub class Stub
{ {
static void Main(string[] args) static void Main(string[] args)
{ {
throw new InvalidOperationException("Entry point exists only to support output type 'Exe'"); throw new InvalidOperationException("Entry point exists only to support output type 'Exe'");
} }
} }
} }

4
ICSharpCode.Decompiler.Tests/TestCases/ILPretty/Issue379.cs

@ -2,8 +2,8 @@
namespace ICSharpCode.Decompiler.Tests.TestCases.ILPretty namespace ICSharpCode.Decompiler.Tests.TestCases.ILPretty
{ {
internal class Issue379 internal class Issue379
{ {
public virtual void Test<T>() where T : new() public virtual void Test<T>() where T : new()
{ {
} }

Loading…
Cancel
Save