Reports a redundant Unit return type which can be omitted.

Example:


  fun test(): Unit {
      ...
  }

The quick fix removes the Unit return type:


  fun test() {
      ...
  }