- Move introduce and remove !! call to one class
This commit is contained in:
Nikolay Krasko
2012-07-02 20:40:34 +04:00
parent d879827371
commit 83d0e8ebb5
13 changed files with 203 additions and 167 deletions
@@ -1,4 +1,4 @@
// "Remove unnecessary non-null assertion (!!)" "false"
// "Remove unnecessary non-null assertion (!!)" "true"
fun test(value : String) : Int {
return value<caret>!!.length()
return value<caret>!!.length
}