Skip to content

Commit 91d9774

Browse files
committed
removed unused debug statement
1 parent 465ddfa commit 91d9774

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

GoInfoGame/GoInfoGame/LocationManagerDelegate.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ class LocationManagerDelegate: NSObject, CLLocationManagerDelegate {
6262

6363

6464
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
65-
print("didUpdateLocations \(locations.count), \(String(describing: locations.last)), \(String(describing: locationUpdateHandler)) \(Thread.current)")
6665
guard let mostRecentLocation = locations.last else { return }
6766
self.location = mostRecentLocation
6867
self.locationUpdateHandler?(mostRecentLocation.coordinate)

GoInfoGame/GoInfoGame/UI/Map/CustomMap.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ struct CustomMap: UIViewRepresentable {
159159
func reloadMap() async {
160160
guard let mapView = mapView else { return }
161161
async let changes = clusterManager.reload(mapViewSize: mapView.bounds.size, coordinateRegion: mapView.region)
162-
debugPrint("Annotation Changes: insertions: \(await changes.insertions.count) removals:\(await changes.removals.count)")
163162
await applyChanges(changes)
164163
}
165164

0 commit comments

Comments
 (0)