From 21b4dbca1a1c779fd28bc6310b263b805cc4a165 Mon Sep 17 00:00:00 2001 From: Gabor Apati-Nagy Date: Tue, 17 Dec 2013 18:09:54 +0000 Subject: [PATCH] Fixing implicit hidings that break the release build Signed-off-by: Gabor Apati-Nagy --- .../Wizards/PatchingWizard/PlanActions/BringBabiesBackAction.cs | 2 +- .../PatchingWizard/PlanActions/EvacuateHostPlanAction.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/XenAdmin/Wizards/PatchingWizard/PlanActions/BringBabiesBackAction.cs b/XenAdmin/Wizards/PatchingWizard/PlanActions/BringBabiesBackAction.cs index d97f283f4..38deb078e 100644 --- a/XenAdmin/Wizards/PatchingWizard/PlanActions/BringBabiesBackAction.cs +++ b/XenAdmin/Wizards/PatchingWizard/PlanActions/BringBabiesBackAction.cs @@ -40,7 +40,7 @@ namespace XenAdmin.Wizards.PatchingWizard.PlanActions { public class BringBabiesBackAction : PlanActionWithSession { - private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); + private static new readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); private readonly XenRef _host; private readonly Host currentHost; diff --git a/XenAdmin/Wizards/PatchingWizard/PlanActions/EvacuateHostPlanAction.cs b/XenAdmin/Wizards/PatchingWizard/PlanActions/EvacuateHostPlanAction.cs index e52630d0b..864d0063b 100644 --- a/XenAdmin/Wizards/PatchingWizard/PlanActions/EvacuateHostPlanAction.cs +++ b/XenAdmin/Wizards/PatchingWizard/PlanActions/EvacuateHostPlanAction.cs @@ -36,7 +36,7 @@ namespace XenAdmin.Wizards.PatchingWizard.PlanActions { public class EvacuateHostPlanAction : PlanActionWithSession { - private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); + private static new readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); private readonly XenRef _host; private readonly Host currentHost;