tox4j / deprecated-tox4j

Deprecated, see http://github.com/TokTok/jvm-toxcore-c
http://github.com/TokTok/jvm-toxcore-c
Other
42 stars 17 forks source link

Linting: `val` specifier is redundant in case classes #118

Closed nbraud closed 9 years ago

nbraud commented 9 years ago

Our linter should complain about case class arguments lists containing val, as it is present anyways.

Here is an example of such code that compiles without linter warning:

final case class Test(val x: Int)