UnityEditor.ASMainWindow.InitUpdatePage C# (CSharp) Метод

InitUpdatePage() публичный Метод

public InitUpdatePage ( bool lastActionsResult ) : void
lastActionsResult bool
Результат void
        public void InitUpdatePage(bool lastActionsResult)
        {
            if (!lastActionsResult)
            {
                this.Reinit();
            }
            else
            {
                if (this.UpdateNeedsRefresh())
                {
                    this.GetUpdates();
                }
                if (this.sharedChangesets == null)
                {
                    this.Reinit();
                }
                else
                {
                    this.asUpdateWin = new ASUpdateWindow(this, this.sharedChangesets);
                    this.asUpdateWin.SetSelectedRevisionLine(0);
                }
            }
        }