Skip to content

Commit c3f749f

Browse files
committed
Removed unused method
1 parent b5fa7a5 commit c3f749f

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Rubberduck.Inspections/Concrete/UnreachableCaseInspection/UCIValueResults.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ public interface IUCIValueResults
1212
bool Contains(ParserRuleContext context);
1313
bool TryGetValue(ParserRuleContext context, out IUCIValue value);
1414
void OnNewValueResult(object sender, ValueResultEventArgs e);
15-
bool Any();
1615
}
1716

1817
public class UCIValueResults : IUCIValueResults
@@ -48,11 +47,6 @@ public bool Contains(ParserRuleContext context)
4847
return _parseTreeValues.ContainsKey(context);
4948
}
5049

51-
public bool Any()
52-
{
53-
return _parseTreeValues.Count != 0;
54-
}
55-
5650
public bool TryGetValue(ParserRuleContext context, out IUCIValue value)
5751
{
5852
return _parseTreeValues.TryGetValue(context, out value);

0 commit comments

Comments
 (0)