Skip to content

Instantly share code, notes, and snippets.

@ch8n
Created April 3, 2021 19:31
Show Gist options
  • Save ch8n/d58bc6ceead35cec2cb3719dd0c1fae9 to your computer and use it in GitHub Desktop.
Save ch8n/d58bc6ceead35cec2cb3719dd0c1fae9 to your computer and use it in GitHub Desktop.
class Foo {
var imageFile : File ? = ...
fun deleteImage(){
// 🧐 you can get away for now
imageFile?.let { image ->
if(image.exists()) image.delete()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment