From 0ca7f7b05a48c4e44e23ed32e1f76ebe804c4cdd Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 18 May 2024 22:41:24 -0700 Subject: [PATCH] Delete unused Blocks.swift. --- Core/Sources/Core/Blocks.swift | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 Core/Sources/Core/Blocks.swift diff --git a/Core/Sources/Core/Blocks.swift b/Core/Sources/Core/Blocks.swift deleted file mode 100644 index 3b698a9d8..000000000 --- a/Core/Sources/Core/Blocks.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// Blocks.swift -// RSCore -// -// Created by Brent Simmons on 11/29/19. -// Copyright © 2019 Ranchero Software, LLC. All rights reserved. -// - -import Foundation - -public typealias VoidBlock = () -> Void -public typealias VoidCompletionBlock = VoidBlock - -public typealias VoidResult = Result -public typealias VoidResultCompletionBlock = (VoidResult) -> Void - -public typealias ImageResultBlock = @Sendable (RSImage?) -> Void