Replaced sure() invocations with '!!' operator in examples code.

This commit is contained in:
Evgeny Gerashchenko
2012-09-14 16:32:47 +04:00
parent 789c8608e5
commit 3fd61edcd5
20 changed files with 51 additions and 51 deletions
@@ -3,5 +3,5 @@ package hello
public val KotlinHelloString : String = "Hello from Kotlin!"
public fun getHelloStringFromJava() : String {
return JavaHello.JavaHelloString.sure();
return JavaHello.JavaHelloString!!;
}