Join Slack
Communities
Powered by
I find that in Kotlin, the class-header itself can...
# android
k
kevinmost
06/02/2016, 8:46 PM
I find that in Kotlin, the class-header itself can get
really long
, so breaking it up into multiple lines is useful. Ex:
Copy code
class FooActivity @Inject internal constructor() : Activity(), View.OnClickListener {
is more readable than
class FooActivity @Inject internal constructor() : Activity(), View.OnClickListener {
👍 2
Open in Slack
Previous
Next