Index: Core/Common/src/Core.Common.Gui/Commands/GuiImportHandler.cs =================================================================== diff -u -r95b2f3a62c8b753acf853a265464098d189c38bd -r65f5b28d47b6d27e40f677108c6f56bf2120906c --- Core/Common/src/Core.Common.Gui/Commands/GuiImportHandler.cs (.../GuiImportHandler.cs) (revision 95b2f3a62c8b753acf853a265464098d189c38bd) +++ Core/Common/src/Core.Common.Gui/Commands/GuiImportHandler.cs (.../GuiImportHandler.cs) (revision 65f5b28d47b6d27e40f677108c6f56bf2120906c) @@ -75,11 +75,6 @@ this.inquiryHelper = inquiryHelper; } - public bool CanImportOn(object target) - { - return GetSupportedImportInfos(target).Any(); - } - public void ImportOn(object target) { ImportInfo importInfo = GetSupportedImporterUsingDialog(target); Index: Core/Common/src/Core.Common.Gui/Commands/IImportCommandHandler.cs =================================================================== diff -u -r95b2f3a62c8b753acf853a265464098d189c38bd -r65f5b28d47b6d27e40f677108c6f56bf2120906c --- Core/Common/src/Core.Common.Gui/Commands/IImportCommandHandler.cs (.../IImportCommandHandler.cs) (revision 95b2f3a62c8b753acf853a265464098d189c38bd) +++ Core/Common/src/Core.Common.Gui/Commands/IImportCommandHandler.cs (.../IImportCommandHandler.cs) (revision 65f5b28d47b6d27e40f677108c6f56bf2120906c) @@ -37,13 +37,6 @@ IEnumerable GetSupportedImportInfos(object target); /// - /// Indicates if there are importers for the given target object. - /// - /// The target object to check importer availability for. - /// true if there are importers available, false otherwise. - bool CanImportOn(object target); - - /// /// Perform the import workflow by the following steps: /// /// If multiple importers are available for the target object, determine