File tree Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Original file line number Diff line number Diff line change 8
8
using CommunityToolkit . Mvvm . SourceGenerators . ComponentModel . Models ;
9
9
using CommunityToolkit . Mvvm . SourceGenerators . Extensions ;
10
10
using CommunityToolkit . Mvvm . SourceGenerators . Helpers ;
11
- using CommunityToolkit . Mvvm . SourceGenerators . Messaging . Models ;
12
11
using Microsoft . CodeAnalysis ;
13
12
using Microsoft . CodeAnalysis . CSharp ;
14
13
using Microsoft . CodeAnalysis . CSharp . Syntax ;
@@ -86,27 +85,6 @@ public static ValidationInfo GetInfo(INamedTypeSymbol typeSymbol)
86
85
propertyNames . ToImmutable ( ) ) ;
87
86
}
88
87
89
- /// <summary>
90
- /// Gets the <see cref="RecipientInfo"/> instance from the given info.
91
- /// </summary>
92
- /// <param name="typeSymbol">The type symbol for the target type being inspected.</param>
93
- /// <param name="interfaceSymbols">The input array of interface type symbols being handled.</param>
94
- /// <returns>A <see cref="RecipientInfo"/> instance for the current type being inspected.</returns>
95
- public static RecipientInfo GetInfo ( INamedTypeSymbol typeSymbol , ImmutableArray < INamedTypeSymbol > interfaceSymbols )
96
- {
97
- using ImmutableArrayBuilder < string > names = ImmutableArrayBuilder < string > . Rent ( ) ;
98
-
99
- foreach ( INamedTypeSymbol interfaceSymbol in interfaceSymbols )
100
- {
101
- names . Add ( interfaceSymbol . TypeArguments [ 0 ] . GetFullyQualifiedName ( ) ) ;
102
- }
103
-
104
- return new (
105
- typeSymbol . GetFullyQualifiedMetadataName ( ) ,
106
- typeSymbol . GetFullyQualifiedName ( ) ,
107
- names . ToImmutable ( ) ) ;
108
- }
109
-
110
88
/// <summary>
111
89
/// Gets the head <see cref="CompilationUnitSyntax"/> instance.
112
90
/// </summary>
You can’t perform that action at this time.
0 commit comments