IntelliJ scala plugin incorrectly formatting method bodies with preceeding comments.
class FormatTest {
def firstMethod: String =
"body"
/**
* Returns a string "body"
*
* @return "body"
*/
def secondMethod: String =
"body"
}