Skip to content

Commit ef9b08b

Browse files
committed
cleanup
1 parent bf26c5c commit ef9b08b

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

src/ApiBuilderTests/BuildApiTest.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using Microsoft.CodeAnalysis;
2-
31
[TestFixture]
42
public class BuildApiTest
53
{
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
global using NUnit.Framework;
22
global using System;
33
global using System.Diagnostics.CodeAnalysis;
4+
global using Microsoft.CodeAnalysis;
45
global using Microsoft.CodeAnalysis.CSharp;
56
global using Microsoft.CodeAnalysis.CSharp.Syntax;

src/ApiBuilderTests/RoslynExtensions.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using Microsoft.CodeAnalysis;
2-
3-
public static class RoslynExtensions
1+
public static class RoslynExtensions
42
{
53
public static bool IsPublic(this MemberDeclarationSyntax member) =>
64
member.Modifiers.Any(_ => _.ValueText == "public");

0 commit comments

Comments
 (0)