Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
annelo-msft committed Aug 11, 2023
1 parent ce00057 commit 1453cbe
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Diagnostics;
using System.Linq;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
Expand Down Expand Up @@ -49,8 +48,6 @@ public override void Initialize(AnalysisContext context)

public override void Analyze(ISymbolAnalysisContext context)
{
Debug.WriteLine($"{context.Symbol}");

if (IsAzureCore(context.Symbol.ContainingAssembly))
{
return;
Expand Down Expand Up @@ -86,14 +83,10 @@ public override void Analyze(ISymbolAnalysisContext context)
}
break;
}

Debug.WriteLine($"done");
}

public void AnalyzeNode(SyntaxNodeAnalysisContext context)
{
Debug.WriteLine($"{context.Node}");

if (IsAzureCore(context.ContainingSymbol.ContainingAssembly))
{
return;
Expand Down

0 comments on commit 1453cbe

Please sign in to comment.