File tree Expand file tree Collapse file tree 3 files changed +62
-123
lines changed Expand file tree Collapse file tree 3 files changed +62
-123
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ impl Scanner {
169
169
pub fn globs ( & mut self ) -> Vec < GlobEntry > {
170
170
self
171
171
. scanner
172
- . get_normalized_sources ( )
172
+ . get_globs ( )
173
173
. into_iter ( )
174
174
. map ( Into :: into)
175
175
. collect ( )
@@ -179,7 +179,7 @@ impl Scanner {
179
179
pub fn normalized_sources ( & mut self ) -> Vec < GlobEntry > {
180
180
self
181
181
. scanner
182
- . get_normalized_sources ( )
182
+ . get_globs ( )
183
183
. into_iter ( )
184
184
. map ( Into :: into)
185
185
. collect ( )
Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ impl Scanner {
289
289
}
290
290
291
291
#[ tracing:: instrument( skip_all) ]
292
- pub fn get_normalized_sources ( & mut self ) -> Vec < GlobEntry > {
292
+ pub fn get_globs ( & mut self ) -> Vec < GlobEntry > {
293
293
self . sources
294
294
. iter ( )
295
295
. filter_map ( |source| match source {
You can’t perform that action at this time.
0 commit comments