I wonder what is wrong with: ``` val someValue: St...
# announcements
m
I wonder what is wrong with:
Copy code
val someValue: String? = "canBeNullOrNot"
if (someValue != null) {
  doSomethingWithTheString(someValue)
} else {
  logThisCase()
}