From 9c858bb10066a4b4a6070d1243a013ad45ae62ac Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Tue, 3 Oct 2023 11:32:19 +1100 Subject: [PATCH] cleanup --- AssemblyToProcess/ClassWithNested.cs | 10 +++------- Tests/IntegrationTests.cs | 2 +- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/AssemblyToProcess/ClassWithNested.cs b/AssemblyToProcess/ClassWithNested.cs index 620c2cb..b227a3b 100644 --- a/AssemblyToProcess/ClassWithNested.cs +++ b/AssemblyToProcess/ClassWithNested.cs @@ -3,15 +3,11 @@ class ClassWithNested { - public class NestedClass - { - } + public class NestedClass; [CompilerGenerated] - private sealed class NestedCompilerGeneratedClass { } + private sealed class NestedCompilerGeneratedClass; } [EditorBrowsable(EditorBrowsableState.Advanced)] -class ClassWithEditorBrowsableAttribute -{ -} \ No newline at end of file +class ClassWithEditorBrowsableAttribute; \ No newline at end of file diff --git a/Tests/IntegrationTests.cs b/Tests/IntegrationTests.cs index 5b8ba97..d3039b9 100644 --- a/Tests/IntegrationTests.cs +++ b/Tests/IntegrationTests.cs @@ -13,7 +13,7 @@ public IntegrationTests() { var weavingTask = new ModuleWeaver { - Config = XElement.Parse(@"") + Config = XElement.Parse("""""") }; testResult = weavingTask.ExecuteTestRun("AssemblyToProcess.dll"); }