We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 769517b commit 5a9e470Copy full SHA for 5a9e470
AutomaticInterface/AutomaticInterface/Builder.cs
@@ -113,20 +113,6 @@ is not ClassDeclarationSyntax classSyntax
113
);
114
}
115
116
- private static string GetNameSpace(ISymbol typeSymbol, AttributeData? generationAttribute)
117
- {
118
- if (generationAttribute == null)
119
120
- return typeSymbol.ContainingNamespace.ToDisplayString();
121
- }
122
-
123
- var customNs = generationAttribute.ConstructorArguments.FirstOrDefault().Value?.ToString();
124
125
- return string.IsNullOrWhiteSpace(customNs)
126
- ? typeSymbol.ContainingNamespace.ToDisplayString()
127
- : customNs!;
128
129
130
private static bool GetAsInternal(AttributeData? generationAttribute)
131
{
132
if (generationAttribute == null)
0 commit comments