in hot-reload-orchestration/src/main/kotlin/org/jetbrains/compose/reload/orchestration/OrchestrationMessage.kt [295:301]
override fun equals(other: Any?): Boolean {
if (other === this) return true
if (other !is Screenshot) return false
if (other.format != format) return false
if (!other.data.contentEquals(data)) return false
return true
}