Skip to content

Commit 9c2167d

Browse files
committed
Code style cleanup
Also removed unnecessary changes to the project file related to dotnet/project-system#2873.
1 parent ee48913 commit 9c2167d

3 files changed

Lines changed: 1 addition & 17 deletions

File tree

StyleCop.Analyzers/StyleCop.Analyzers/ReadabilityRules/SA1135UsingDirectivesMustBeQualified.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
namespace StyleCop.Analyzers.ReadabilityRules
55
{
6-
using System;
76
using System.Collections.Immutable;
87
using Microsoft.CodeAnalysis;
98
using Microsoft.CodeAnalysis.CSharp;

StyleCop.Analyzers/StyleCop.Analyzers/StyleCop.Analyzers.csproj

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,4 @@
3737
<None Include="**\*.json" Exclude="$(DefaultItemExcludes);$(DefaultExcludesInProjectFolder)" />
3838
</ItemGroup>
3939

40-
<ItemGroup>
41-
<Compile Update="ReadabilityRules\ReadabilityResources.Designer.cs">
42-
<DesignTime>True</DesignTime>
43-
<AutoGen>True</AutoGen>
44-
<DependentUpon>ReadabilityResources.resx</DependentUpon>
45-
</Compile>
46-
</ItemGroup>
47-
48-
<ItemGroup>
49-
<EmbeddedResource Update="ReadabilityRules\ReadabilityResources.resx">
50-
<Generator>ResXFileCodeGenerator</Generator>
51-
<LastGenOutput>ReadabilityResources.Designer.cs</LastGenOutput>
52-
</EmbeddedResource>
53-
</ItemGroup>
54-
5540
</Project>

documentation/SA1135.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ namespace System.Threading
4242
using System.IO;
4343
using System.Threading.Tasks;
4444

45-
using T = Thread;
45+
using T = Thread;
4646
}
4747
```
4848

0 commit comments

Comments
 (0)