Fixed compile warnings

This commit is contained in:
Ben Wallis 2017-12-07 18:18:05 +00:00
parent d84b17ced3
commit d91f7e1ac3
2 changed files with 2 additions and 2 deletions

View File

@ -74,8 +74,6 @@ namespace Filtration.ObjectModel
BlockItems = new ObservableCollection<IItemFilterBlockItem> { ActionBlockItem }; BlockItems = new ObservableCollection<IItemFilterBlockItem> { ActionBlockItem };
} }
public ICommandManager CommandManager { get; }
public bool Enabled { get; set; } = true; public bool Enabled { get; set; } = true;
public string Description { get; set; } public string Description { get; set; }

View File

@ -163,7 +163,9 @@ namespace Filtration.ViewModels
} }
case "OpenScript": case "OpenScript":
{ {
#pragma warning disable 4014
OnOpenScriptCommand(); OnOpenScriptCommand();
#pragma warning restore 4014
break; break;
} }
case "ShowLoadingBanner": case "ShowLoadingBanner":