File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -204,17 +204,17 @@ string excludeAssembliesWithoutSources
204204
205205 var thresholdTypeFlagQueue = new Queue < ThresholdTypeFlags > ( ) ;
206206
207- foreach ( string thresholdTyp in thresholdType )
207+ foreach ( string thresholdMode in thresholdType )
208208 {
209- if ( thresholdTyp . Equals ( "line" , StringComparison . OrdinalIgnoreCase ) )
209+ if ( thresholdMode . Equals ( "line" , StringComparison . OrdinalIgnoreCase ) )
210210 {
211211 thresholdTypeFlagQueue . Enqueue ( ThresholdTypeFlags . Line ) ;
212212 }
213- else if ( thresholdTyp . Equals ( "branch" , StringComparison . OrdinalIgnoreCase ) )
213+ else if ( thresholdMode . Equals ( "branch" , StringComparison . OrdinalIgnoreCase ) )
214214 {
215215 thresholdTypeFlagQueue . Enqueue ( ThresholdTypeFlags . Branch ) ;
216216 }
217- else if ( thresholdTyp . Equals ( "method" , StringComparison . OrdinalIgnoreCase ) )
217+ else if ( thresholdMode . Equals ( "method" , StringComparison . OrdinalIgnoreCase ) )
218218 {
219219 thresholdTypeFlagQueue . Enqueue ( ThresholdTypeFlags . Method ) ;
220220 }
You can’t perform that action at this time.
0 commit comments