Hey guys - i feel like a dope asking this, but I c...
# announcements
a
Hey guys - i feel like a dope asking this, but I cannot for the life of me figure out how to get the autoformatter in Android Studio to properly handle multiline method calls. So for example, I have the following code:
Copy code
Observable.just("Foo")
            .map { "Bar" }
            .filter { it == "Baz" }
            .doOnNext { print("Bat") }
            .subscribe { print(it) }