Removed unnecessary call to the base class method.

Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
This commit is contained in:
Konstantina Chremmou 2018-12-20 10:37:52 +00:00 committed by Mihaela Stoica
parent 67a0980318
commit b94274949e
2 changed files with 0 additions and 3 deletions

View File

@ -107,7 +107,6 @@ namespace XenAdmin.Wizards.GenericPages
public override void PageCancelled()
{
DeregisterConnectionEvents();
base.PageCancelled();
}
public void RefreshPage()

View File

@ -104,8 +104,6 @@ namespace XenAdmin.Wizards.PatchingWizard
Status = Status.Cancelled;
backgroundWorkers.ForEach(bgw => bgw.CancelAsync());
}
base.PageCancelled();
}
protected override void PageLoadedCore(PageLoadedDirection direction)