Skip to content
This repository was archived by the owner on Aug 21, 2021. It is now read-only.

Commit 7309cca

Browse files
committed
Replace an unused parameter with _.
1 parent 869fbfb commit 7309cca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SwinjectSimpleExample/Network.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Alamofire
1212
struct Network : Networking {
1313
func request(response: NSData? -> ()) {
1414
Alamofire.request(.GET, OpenWeatherMap.url, parameters: OpenWeatherMap.parameters)
15-
.response { _, _, data, error in
15+
.response { _, _, data, _ in
1616
response(data)
1717
}
1818
}

0 commit comments

Comments
 (0)