From 868da19d7678092f315defeeb28f13e3395537d2 Mon Sep 17 00:00:00 2001 From: kean Date: Sun, 18 Aug 2024 14:47:24 -0400 Subject: [PATCH] Remove unused isResumableDataEnabled --- Sources/Nuke/Loading/DataLoader.swift | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Sources/Nuke/Loading/DataLoader.swift b/Sources/Nuke/Loading/DataLoader.swift index 6da747777..e1b3a2a0b 100644 --- a/Sources/Nuke/Loading/DataLoader.swift +++ b/Sources/Nuke/Loading/DataLoader.swift @@ -13,12 +13,6 @@ public final class DataLoader: DataLoading, @unchecked Sendable { /// default, `false`. public var prefersIncrementalDelivery = false - /// If the data task is terminated (either because of a failure or a - /// cancellation) and the image was partially loaded, the next load will - /// resume where it left off. Supports both validators (`ETag`, - /// `Last-Modified`). Resumable downloads are enabled by default. - public var isResumableDataEnabled = true - /// The delegate that gets called for the callbacks handled by the data loader. /// You can use it for observing the session events and modifying some of the /// task behavior, e.g. handling authentication challenges.