Files
GameDevTVObstacleDodge/Library/PackageCache/com.unity.collab-proxy@1ec4e416a4af/Editor/UVCSToolbar/Headless/HeadlessGluonUpdateReport.cs

23 lines
640 B
C#
Raw Normal View History

2026-01-08 16:50:20 +00:00
using System.Collections.Generic;
using Codice.CM.Common;
using GluonGui.WorkspaceWindow.Views.WorkspaceExplorer.Explorer;
using PlasticGui.Gluon;
using Unity.PlasticSCM.Editor.Gluon.UpdateReport;
namespace Unity.PlasticSCM.Editor.Toolbar.Headless
{
internal class HeadlessGluonUpdateReport : IUpdateReport
{
void IUpdateReport.AppendReport(string updateReport) { }
UpdateReportResult IUpdateReport.ShowUpdateReport(
WorkspaceInfo wkInfo,
List<ErrorMessage> errors)
{
return UpdateReportDialog.ShowUpdateReport(
wkInfo, errors, null);
}
}
}