Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
shial4 committed Jul 11, 2018
1 parent d7edbee commit a3f466c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SLazeKit/SLazeKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class SLazeKit<Config: LazeConfiguration> {
if let data = data, error == nil {
do {
let object = try Config.decoder.decode(T.self, from: data)
try Config.synchronize(object)
Config.synchronize(object)
handler((data, response as? HTTPURLResponse), object, nil)
} catch {
handler((data, response as? HTTPURLResponse), nil, error)
Expand Down

0 comments on commit a3f466c

Please sign in to comment.