File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
Rubberduck.Inspections/Concrete/UnreachableCaseInspection Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ public interface IUCIValueResults
12
12
bool Contains ( ParserRuleContext context ) ;
13
13
bool TryGetValue ( ParserRuleContext context , out IUCIValue value ) ;
14
14
void OnNewValueResult ( object sender , ValueResultEventArgs e ) ;
15
- bool Any ( ) ;
16
15
}
17
16
18
17
public class UCIValueResults : IUCIValueResults
@@ -48,11 +47,6 @@ public bool Contains(ParserRuleContext context)
48
47
return _parseTreeValues . ContainsKey ( context ) ;
49
48
}
50
49
51
- public bool Any ( )
52
- {
53
- return _parseTreeValues . Count != 0 ;
54
- }
55
-
56
50
public bool TryGetValue ( ParserRuleContext context , out IUCIValue value )
57
51
{
58
52
return _parseTreeValues . TryGetValue ( context , out value ) ;
You can’t perform that action at this time.
0 commit comments