From 2f202c6ab323652f79e743e110201895fa0d2439 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Tue, 21 Jan 2020 19:30:05 -0500 Subject: [PATCH] remove unused event handlers --- .../Editors/FileSystem/FileSystemEditor.cs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/CSharp/Libraries/UniversalEditor.UserInterface/Editors/FileSystem/FileSystemEditor.cs b/CSharp/Libraries/UniversalEditor.UserInterface/Editors/FileSystem/FileSystemEditor.cs index 510c3a06..5d52d8f6 100644 --- a/CSharp/Libraries/UniversalEditor.UserInterface/Editors/FileSystem/FileSystemEditor.cs +++ b/CSharp/Libraries/UniversalEditor.UserInterface/Editors/FileSystem/FileSystemEditor.cs @@ -71,20 +71,6 @@ namespace UniversalEditor.Editors.FileSystem this.tv.DragDropDataRequest += tv_DragDropDataRequest; } - private void ContextMenuDelete_Click(object sender, EventArgs e) - { - // forward to EditDelete - this will be unnecessary once we implement these menu item definitions as XML - if (Application.Commands["EditDelete"] != null) - Application.Commands["EditDelete"].Execute(); - } - - private void contextMenuUnselectedPaste_Click(object sender, EventArgs e) - { - // forward to EditPaste - this will be unnecessary once we implement these menu item definitions as XML - if (Application.Commands["EditPaste"] != null) - Application.Commands["EditPaste"].Execute(); - } - private void tv_DragDropDataRequest(object sender, DragDropDataRequestEventArgs e) { if (tv.SelectedRows.Count == 0) return;