Skip to content

Commit

Permalink
Update import for warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
onevcat committed Aug 26, 2023
1 parent b6f6275 commit 7e89cf9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Sources/Networking/ImageModifier.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import Foundation
#if os(macOS)
import AppKit
#else
import UIKit
#endif

/// An `ImageModifier` can be used to change properties on an image between cache serialization and the actual use of
/// the image. The `modify(_:)` method will be called after the image retrieved from its source and before it returned
Expand Down

0 comments on commit 7e89cf9

Please sign in to comment.