Wogan
7/13/2016 - 6:52 PM

IntelliJ scala plugin incorrectly formatting method bodies with preceeding comments.

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"
}