fix(embed): add type test to MagnifierFrame.equals for Sonar S2097

This commit is contained in:
davotoula
2026-07-01 09:29:36 +02:00
parent 0c85986f5b
commit c66d1db0de
@@ -59,7 +59,7 @@ data class MagnifierFrame(
val captureMs: Double,
val requestStampNanos: Long,
) {
override fun equals(other: Any?) = this === other
override fun equals(other: Any?) = other is MagnifierFrame && this === other
override fun hashCode() = System.identityHashCode(this)
}