Skip to content

Commit 24fb9f9

Browse files
committed
Remove a couple dead classes.
1 parent d42c28f commit 24fb9f9

File tree

1 file changed

+0
-27
lines changed

1 file changed

+0
-27
lines changed

Rubberduck.Parsing/IParseResultProvider.cs

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,9 @@
11
using System;
2-
using System.Collections.Generic;
32
using Microsoft.Vbe.Interop;
43
using Rubberduck.Parsing.VBA;
54

65
namespace Rubberduck.Parsing
76
{
8-
public class ParseStartedEventArgs : EventArgs
9-
{
10-
public ParseStartedEventArgs(IEnumerable<string> projectNames)
11-
{
12-
_projectNames = projectNames;
13-
}
14-
15-
private readonly IEnumerable<string> _projectNames;
16-
public IEnumerable<string> ProjectNames { get { return _projectNames; } }
17-
}
18-
19-
public class ResolutionProgressEventArgs : EventArgs
20-
{
21-
private readonly VBComponent _component;
22-
private readonly decimal _percentProgress;
23-
24-
public ResolutionProgressEventArgs(VBComponent component, decimal percentProgress)
25-
{
26-
_component = component;
27-
_percentProgress = percentProgress;
28-
}
29-
30-
public VBComponent Component { get { return _component; } }
31-
public decimal PercentProgress { get { return _percentProgress; } }
32-
}
33-
347
public class ParseProgressEventArgs : EventArgs
358
{
369
private readonly VBComponent _component;

0 commit comments

Comments
 (0)