Intention / inspection for unnecessary lateinit #KT-13011 Fixed

(cherry picked from commit 45d82f1)
This commit is contained in:
shiraji
2016-07-26 01:12:50 +03:00
committed by Mikhail Glukhikh
parent d868410093
commit 5fb79259f7
26 changed files with 428 additions and 0 deletions
@@ -0,0 +1,7 @@
class My {
var x: String
init {
x = "My"
}
}
@@ -0,0 +1,7 @@
class My {
lateinit var x: String
init {
x = "My"
}
}
@@ -0,0 +1,5 @@
<html>
<body>
This intention removes unnecessary lateinit modifiers.
</body>
</html>