https://kotlinlang.org logo
d

Daniel

03/21/2020, 11:22 AM
Hey people and a huge thanks in advance: Suddenly intellij autoformat adds a new line between fields which are annotated as mocks:
Copy code
@Mock
    private lateinit var originA: AnyOrigin
    @Mock
    private lateinit var originB: AnyOrigin
get formatted to:
Copy code
@Mock
    private lateinit var originA: AnyOrigin

    @Mock
    private lateinit var originB: AnyOrigin
For the life of me I can't find or google the setting which causes this, has anyone an idea?