From 134ba236b78b962d72cd5f44ca03accf80b7888f Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 13 Apr 2019 13:10:32 -0700 Subject: [PATCH] Remove SendToCommand, now in RSCore. --- Commands/SendToCommand.swift | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Commands/SendToCommand.swift diff --git a/Commands/SendToCommand.swift b/Commands/SendToCommand.swift deleted file mode 100644 index 795c57698..000000000 --- a/Commands/SendToCommand.swift +++ /dev/null @@ -1,21 +0,0 @@ -// -// SendToCommand.swift -// NetNewsWire -// -// Created by Brent Simmons on 1/8/18. -// Copyright © 2018 Ranchero Software. All rights reserved. -// - -import AppKit - -// Unlike UndoableCommand commands, you instantiate one of each of these and reuse them. - -protocol SendToCommand { - - var title: String { get } - var image: NSImage? { get } - - func canSendObject(_ object: Any?, selectedText: String?) -> Bool - func sendObject(_ object: Any?, selectedText: String?) -} -