Skip to content

Commit

Permalink
removed unused fluff
Browse files Browse the repository at this point in the history
  • Loading branch information
retailcoder committed Jun 4, 2018
1 parent c5ac600 commit ddb2993
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions Rubberduck.VBEEditor/Events/AutoCompleteEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@ public AutoCompleteEventArgs(ICodePane pane)
if (string.IsNullOrWhiteSpace(atSelection))
{
IsCommitted = true;
OldPrecedingLine = module.GetLines(selection.PreviousLine.PreviousLine);
OldCode = module.GetLines(selection.PreviousLine);
}
else
{
OldPrecedingLine = module.GetLines(selection.PreviousLine);
OldCode = module.GetLines(selection);
}
}
Expand Down Expand Up @@ -50,11 +48,6 @@ public AutoCompleteEventArgs(ICodePane pane)
/// </summary>
public string OldCode { get; }

/// <summary>
/// The line of code immediately above <see cref="OldCode"/>; used to determine whether we're looking at a line-continuated comment.
/// </summary>
public string OldPrecedingLine { get; }

/// <summary>
/// The autocompleted line of code, assigned by the autocomplete implementation. Used for caching, to prevent misfiring autocompletes.
/// If autocomplete works off committed input, this should match the <see cref="OldCode"/>.
Expand Down

0 comments on commit ddb2993

Please sign in to comment.