Skip to content

Commit

Permalink
Tweak BulkAnalysis output
Browse files Browse the repository at this point in the history
  • Loading branch information
Lusamine committed Mar 16, 2023
1 parent cef70fe commit c079678
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PKHeX.Core/Legality/Bulk/BulkAnalysis.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,18 @@ private void ScanAll()
analyzer.Analyze(this);
}

private static string GetSummary(SlotCache entry) => $"[{entry.Identify()}] {entry.Entity.FileName}";
private static string GetSummary(SlotCache entry) => $"[{entry.Identify()}]";

public void AddLine(SlotCache first, SlotCache second, string msg, CheckIdentifier i, Severity s = Severity.Invalid)
{
var c = $"{msg}{Environment.NewLine}{GetSummary(first)}{Environment.NewLine}{GetSummary(second)}";
var c = $"{msg}{Environment.NewLine}{GetSummary(first)}{Environment.NewLine}{GetSummary(second)}{Environment.NewLine}";
var chk = new CheckResult(s, c, i);
Parse.Add(chk);
}

public void AddLine(SlotCache first, string msg, CheckIdentifier i, Severity s = Severity.Invalid)
{
var c = $"{msg}{Environment.NewLine}{GetSummary(first)}";
var c = $"{msg}{Environment.NewLine}{GetSummary(first)}{Environment.NewLine}";
var chk = new CheckResult(s, c, i);
Parse.Add(chk);
}
Expand Down

0 comments on commit c079678

Please sign in to comment.