Skip to content

Commit

Permalink
Suppress unused property
Browse files Browse the repository at this point in the history
  • Loading branch information
leandroalonso committed Nov 4, 2020
1 parent aba35ab commit 90bb65d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WordPress/Classes/Utility/ABTesting/ExPlatService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ExPlatService {
func getAssignments(completion: @escaping (Assignments?) -> Void) {
wordPressComRestApi.GET(assignmentsPath,
parameters: nil,
success: { responseObject, httpResponse in
success: { responseObject, _ in
do {
let decoder = JSONDecoder()
let data = try JSONSerialization.data(withJSONObject: responseObject, options: [])
Expand Down

0 comments on commit 90bb65d

Please sign in to comment.