lines like this are pretty hard to read ``` open c...
# announcements
k
lines like this are pretty hard to read
Copy code
open class RestClient(private val client: OkHttpClient, private val authenticationService: AuthenticationService, private val networkManager: NetworkManager) {
I'd much rather force it to be
Copy code
open class RestClient(
        private val client: OkHttpClient, 
        private val authenticationService: AuthenticationService, 
        private val networkManager: NetworkManager) {