Skip to content

Commit 5a9e470

Browse files
committed
Remove unused code
1 parent 769517b commit 5a9e470

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

AutomaticInterface/AutomaticInterface/Builder.cs

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -113,20 +113,6 @@ is not ClassDeclarationSyntax classSyntax
113113
);
114114
}
115115

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-
130116
private static bool GetAsInternal(AttributeData? generationAttribute)
131117
{
132118
if (generationAttribute == null)

0 commit comments

Comments
 (0)