Files
Bombaleila/Library/PackageCache/com.unity.collab-proxy@e566cd3e7623/Editor/UVCSToolbar/Headless/HeadlessGluonUpdateReport.cs
2026-03-03 00:39:30 +05:00

23 lines
640 B
C#

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);
}
}
}