Skip to content

Commit 5590a91

Browse files
committed
Ran codeformatter
1 parent ce3a7ab commit 5590a91

22 files changed

+154
-88
lines changed

src/DeadRegions/OptionParser.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System;
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
using System;
25
using System.Collections.Generic;
36
using System.Diagnostics;
47
using System.IO;

src/DeadRegions/Program.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System;
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
using System;
25
using System.Collections.Generic;
36
using System.Linq;
47
using System.Threading.Tasks;

src/DeadRegions/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System.Reflection;
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
using System.Reflection;
25
using System.Runtime.CompilerServices;
36
using System.Runtime.InteropServices;
47

@@ -10,7 +13,7 @@
1013
[assembly: AssemblyConfiguration("")]
1114
[assembly: AssemblyCompany("")]
1215
[assembly: AssemblyProduct("DeadRegions")]
13-
[assembly: AssemblyCopyright("Copyright © 2015")]
16+
[assembly: AssemblyCopyright("Copyright \u00A9 2015")]
1417
[assembly: AssemblyTrademark("")]
1518
[assembly: AssemblyCulture("")]
1619

src/Microsoft.DotNet.DeadRegionAnalysis.Tests/DocumentSimplificationTests.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System;
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
using System;
25
using System.Collections.Generic;
36
using System.Linq;
47
using System.Text;

src/Microsoft.DotNet.DeadRegionAnalysis.Tests/PreprocessorExpressionEvaluatorTests.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System.Collections.Generic;
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
using System.Collections.Generic;
25
using Microsoft.CodeAnalysis.CSharp;
36
using Microsoft.CodeAnalysis;
47
using Xunit;

src/Microsoft.DotNet.DeadRegionAnalysis.Tests/PreprocessorExpressionSimplifierTests.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System.Collections.Generic;
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
using System.Collections.Generic;
25
using Microsoft.CodeAnalysis;
36
using Microsoft.CodeAnalysis.CSharp;
47
using Microsoft.CodeAnalysis.CSharp.Syntax;

src/Microsoft.DotNet.DeadRegionAnalysis.Tests/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System.Reflection;
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
using System.Reflection;
25
using System.Runtime.CompilerServices;
36
using System.Runtime.InteropServices;
47

@@ -10,7 +13,7 @@
1013
[assembly: AssemblyConfiguration("")]
1114
[assembly: AssemblyCompany("")]
1215
[assembly: AssemblyProduct("Microsoft.DotNet.DeadRegionAnalysis.Tests")]
13-
[assembly: AssemblyCopyright("Copyright © 2015")]
16+
[assembly: AssemblyCopyright("Copyright \u00A9 2015")]
1417
[assembly: AssemblyTrademark("")]
1518
[assembly: AssemblyCulture("")]
1619

src/Microsoft.DotNet.DeadRegionAnalysis.Tests/RegionAnalysisTests.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using Microsoft.CodeAnalysis;
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
using Microsoft.CodeAnalysis;
25
using System;
36
using System.Linq;
47
using Xunit;

src/Microsoft.DotNet.DeadRegionAnalysis.Tests/RegionRemovalTests.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System.Collections.Generic;
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
using System.Collections.Generic;
25
using System.Linq;
36
using System.Threading;
47
using System.Threading.Tasks;
@@ -235,7 +238,7 @@ class B {}
235238
";
236239
Verify(source, expected);
237240
}
238-
241+
239242
[Fact]
240243
public void RemoveEnabledElseWithChain()
241244
{

src/Microsoft.DotNet.DeadRegionAnalysis.Tests/TestBase.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System.Collections.Generic;
1+
// Copyright (c) Microsoft. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
using System.Collections.Generic;
25
using System.Linq;
36
using System.Threading;
47
using System.Threading.Tasks;

0 commit comments

Comments
 (0)