@@ -47,7 +47,7 @@ public static async Task<ImmutableArray<ISymbol>> FindSourceDeclarationsWithNorm
4747 var result = await client . TryInvokeAsync < IRemoteSymbolFinderService , ImmutableArray < SerializableSymbolAndProjectId > > (
4848 solution ,
4949 ( service , solutionInfo , cancellationToken ) => service . FindSolutionSourceDeclarationsWithNormalQueryAsync ( solutionInfo , name , ignoreCase , criteria , cancellationToken ) ,
50- callbackTarget : null ,
50+ callbackTarget : SymbolFinder . EmptyServerCallback . Instance ,
5151 cancellationToken ) . ConfigureAwait ( false ) ;
5252
5353 if ( ! result . HasValue )
@@ -86,7 +86,7 @@ public static async Task<ImmutableArray<ISymbol>> FindSourceDeclarationsWithNorm
8686 var result = await client . TryInvokeAsync < IRemoteSymbolFinderService , ImmutableArray < SerializableSymbolAndProjectId > > (
8787 project . Solution ,
8888 ( service , solutionInfo , cancellationToken ) => service . FindProjectSourceDeclarationsWithNormalQueryAsync ( solutionInfo , project . Id , name , ignoreCase , criteria , cancellationToken ) ,
89- callbackTarget : null ,
89+ callbackTarget : SymbolFinder . EmptyServerCallback . Instance ,
9090 cancellationToken ) . ConfigureAwait ( false ) ;
9191
9292 if ( ! result . HasValue )
@@ -120,7 +120,7 @@ public static async Task<ImmutableArray<ISymbol>> FindSourceDeclarationsWithPatt
120120 var result = await client . TryInvokeAsync < IRemoteSymbolFinderService , ImmutableArray < SerializableSymbolAndProjectId > > (
121121 solution ,
122122 ( service , solutionInfo , cancellationToken ) => service . FindSolutionSourceDeclarationsWithPatternAsync ( solutionInfo , pattern , criteria , cancellationToken ) ,
123- callbackTarget : null ,
123+ callbackTarget : SymbolFinder . EmptyServerCallback . Instance ,
124124 cancellationToken ) . ConfigureAwait ( false ) ;
125125
126126 if ( ! result . HasValue )
@@ -154,7 +154,7 @@ public static async Task<ImmutableArray<ISymbol>> FindSourceDeclarationsWithPatt
154154 var result = await client . TryInvokeAsync < IRemoteSymbolFinderService , ImmutableArray < SerializableSymbolAndProjectId > > (
155155 project . Solution ,
156156 ( service , solutionInfo , cancellationToken ) => service . FindProjectSourceDeclarationsWithPatternAsync ( solutionInfo , project . Id , pattern , criteria , cancellationToken ) ,
157- callbackTarget : null ,
157+ callbackTarget : SymbolFinder . EmptyServerCallback . Instance ,
158158 cancellationToken ) . ConfigureAwait ( false ) ;
159159
160160 if ( ! result . HasValue )
0 commit comments