package it.sephiroth.android.library.exif2.utils internal fun Collection?.notEmpty() : Collection? = if(this?.isNotEmpty() == true) this else null internal fun List?.notEmpty() : List? = if(this?.isNotEmpty() == true) this else null