Skip to content

Commit 53948f7

Browse files
committed
Remove unused code
1 parent 4bb073e commit 53948f7

1 file changed

Lines changed: 0 additions & 14 deletions

File tree

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)