Nexus/Library/PackageCache/com.unity.collab-proxy@3351acaba9c9/Editor/UVCSToolbar/Headless/HeadlessUpdateReport.cs

20 lines
488 B
C#
Raw Permalink Normal View History

2026-01-06 17:23:00 +01:00
using System.Collections;
using Codice.CM.Common;
using PlasticGui.WorkspaceWindow.Update;
using Unity.PlasticSCM.Editor.Developer.UpdateReport;
namespace Unity.PlasticSCM.Editor.Toolbar.Headless
{
internal class HeadlessUpdateReport : IUpdateReport
{
void IUpdateReport.Show(WorkspaceInfo wkInfo, IList reportLines)
{
UpdateReportDialog.ShowReportDialog(
wkInfo,
reportLines,
null);
}
}
}