well I think this is better: ``` fun findParen...
# tornadofx
r
well I think this is better:
Copy code
fun findParentOfGroupByUUID(uuid: UUID) :Group?{
        val grouptofind = findGroupByUUID(uuid)
        return keepassFile?.groups?.filter { it.groups.contains(grouptofind) }?.first()

    }