refactor(diff): drop rendering helpers orphaned by DiffLinesView

This commit is contained in:
mika kuns
2026-08-07 10:23:51 +02:00
parent 54b179fb0b
commit 51371cf678
2 changed files with 0 additions and 21 deletions
@@ -15,20 +15,6 @@ public sealed class DiffLineViewModel
public int? OldNo { get; init; }
public int? NewNo { get; init; }
public required string Text { get; init; }
public string ClassName => Kind switch
{
DiffLineKind.Add => "add",
DiffLineKind.Del => "del",
DiffLineKind.File => "file",
_ => "ctx",
};
public string Sign => Kind switch
{
DiffLineKind.Add => "+",
DiffLineKind.Del => "-",
_ => " ",
};
}
public sealed class DiffFileViewModel