Remove unnecessary lateinit intention / inspection removed (supported in compiler CFA instead)

(cherry picked from commit e17f222)
This commit is contained in:
Mikhail Glukhikh
2016-09-26 12:01:08 +03:00
committed by Mikhail Glukhikh
parent 67cc83af05
commit 4522d2c7da
26 changed files with 0 additions and 431 deletions
@@ -1,7 +0,0 @@
class My {
var x: String
init {
x = "My"
}
}
@@ -1,7 +0,0 @@
class My {
lateinit var x: String
init {
x = "My"
}
}
@@ -1,5 +0,0 @@
<html>
<body>
This intention removes unnecessary lateinit modifiers.
</body>
</html>