CA-248254: Remove unused function

This commit is contained in:
Stephen Turner 2017-03-22 17:56:01 +00:00
parent 21f6bc22c4
commit 5f878e9661

View File

@ -1734,14 +1734,6 @@ namespace XenAdmin.TabPages
: poolPatchString(patch => patch.host_patches.Count > 0 && patch.host_patches.Count != xenObject.Connection.Cache.HostCount);
}
private string poolNotAppliedPatches()
{
return
Helpers.ElyOrGreater(xenObject.Connection)
? poolUpdateString(update => update.AppliedOnHosts.Count == 0)
: poolPatchString(patch => patch.host_patches.Count == 0);
}
private string poolPatchString(Predicate<Pool_patch> predicate)
{
Pool_patch[] patches = xenObject.Connection.Cache.Pool_patches;