Remove unnecessary setter

This commit is contained in:
Kurt
2021-04-18 11:00:40 -07:00
parent 0719320e33
commit fd8da81b4a

View File

@@ -7,7 +7,7 @@ public class CheckResult
{
public Severity Judgement { get; }
public CheckIdentifier Identifier { get; }
public string Comment { get; internal set; }
public string Comment { get; }
public bool Valid => Judgement >= Severity.Fishy;
public string Rating => Judgement.Description();