Remove unnecessary constructor keyword intention (KT-29143)

#KT-29143 Fixed
This commit is contained in:
Felix Guo
2019-01-17 01:28:58 +03:00
committed by Nikolay Krasko
parent c10eadfa77
commit 185d0c6165
24 changed files with 145 additions and 0 deletions
@@ -0,0 +1,12 @@
/**
* An important class
*/
class WithComments
/**
* Some nasty constructor
*/
constructor(
/* First parameter */
val first: Int,<caret>
/* Second Parameter */
val second: Double)