@@ -6,11 +6,11 @@ namespace Flow.Launcher.Plugin.Explorer.Search.FolderLinks
66{
77 public class QuickFolderAccess
88 {
9- private readonly ResultManager _resultManager ;
9+ private readonly ResultManager resultManager ;
1010
1111 public QuickFolderAccess ( PluginInitContext context )
1212 {
13- _resultManager = new ResultManager ( context ) ;
13+ resultManager = new ResultManager ( context ) ;
1414 }
1515
1616 internal List < Result > FolderListMatched ( Query query , List < FolderLink > folderLinks )
@@ -24,13 +24,13 @@ internal List<Result> FolderListMatched(Query query, List<FolderLink> folderLink
2424 folderLinks . Where ( x => x . Nickname . StartsWith ( search , StringComparison . OrdinalIgnoreCase ) ) ;
2525
2626 return queriedFolderLinks . Select ( item =>
27- _resultManager . CreateFolderResult ( item . Nickname , item . Path , item . Path , query ) )
27+ resultManager . CreateFolderResult ( item . Nickname , item . Path , item . Path , query ) )
2828 . ToList ( ) ;
2929 }
3030
3131 internal List < Result > FolderListAll ( Query query , List < FolderLink > folderLinks )
3232 => folderLinks
33- . Select ( item => _resultManager . CreateFolderResult ( item . Nickname , item . Path , item . Path , query ) )
33+ . Select ( item => resultManager . CreateFolderResult ( item . Nickname , item . Path , item . Path , query ) )
3434 . ToList ( ) ;
3535 }
3636}
0 commit comments