Reports redundant enclosing blocks in interpolated strings.

Example:


  val name = "Andy"
  s"Do you know ${name}?"

After the quick-fix is applied:


  val name = "Andy"
  s"Do you know $name?"