Skip to content

Commit

Permalink
Added reference to the interface method implemented.
Browse files Browse the repository at this point in the history
  • Loading branch information
koschke committed Aug 2, 2024
1 parent 10e8c88 commit 1d1099a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Assets/SEE/Net/Dashboard/Model/Issues/Issue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,9 @@ public IssueComment(string username, string userDisplayName, DateTime date,
/// </summary>
public IEnumerable<(string Path, Range Range)> Occurrences => Entities.Select(e => (e.Path, new Range(e.Line, (e.EndLine ?? e.Line) + 1)));

/// <summary>
/// Implements <see cref="IDisplayableIssue.GetCharacterRangeForLine"/>.
/// </summary>
public (int startCharacter, int endCharacter)? GetCharacterRangeForLine(string path, int lineNumber, string line)
{
// Axivion Dashboard doesn't provide character ranges for issues, so we have to calculate them ourselves.
Expand Down

0 comments on commit 1d1099a

Please sign in to comment.