Skip to content

Commit

Permalink
#203 GeocoderRequest cancel function is now public
Browse files Browse the repository at this point in the history
  • Loading branch information
malcommac committed Mar 29, 2018
1 parent 4eabd78 commit cd729b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Shared.swift
Original file line number Diff line number Diff line change
Expand Up @@ -185,12 +185,12 @@ public class GeocoderRequest: Equatable {
}

/// Execute operation
func execute() {
public func execute() {
// nop
}

/// Cancel current execution (if any)
func cancel() {
public func cancel() {
self.isFinished = true
}

Expand Down

0 comments on commit cd729b0

Please sign in to comment.