Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/Simulation/Common/SimulatorBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,10 @@ public void EnableExceptionPrinting()
/// no guarantee is made as to any particular action taken as a result
/// of calling this method.
/// </summary>
protected void MaybeDisplayDiagnostic(object data)
/// <param name="data">
/// The diagnostic object to be displayed.
/// </param>
public void MaybeDisplayDiagnostic(object data)
{
OnDisplayableDiagnostic?.Invoke(data);
}
Expand Down