1
0
mirror of https://github.com/etesync/android synced 2025-02-22 04:22:11 +00:00

Fix compilation warning.

This commit is contained in:
Tom Hacohen 2019-02-12 21:50:36 +00:00
parent b6453718f4
commit e7186df6b8

View File

@ -24,7 +24,7 @@ class Exceptions {
}
constructor(response: Response, message: String) : super(response, message) {
this.retryAfter = java.lang.Long.valueOf(response.header("Retry-After", "0"))
this.retryAfter = java.lang.Long.valueOf(response.header("Retry-After", "0")!!)
}
}