Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc403a68 authored by Dave Mankoff's avatar Dave Mankoff Committed by Android (Google) Code Review
Browse files

Merge "Fix nullability for Kotlin 2.1" into main

parents f597276e 94e45297
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -127,9 +127,9 @@ internal constructor(failureMetadata: FailureMetadata, private val actual: Break

    companion object {
        val BreakpointKeys =
            Correspondence.transforming<Breakpoint, BreakpointKey>({ it?.key }, "key")
            Correspondence.transforming<Breakpoint, BreakpointKey>({ it.key }, "key")
        val BreakpointPositions =
            Correspondence.transforming<Breakpoint, Float>({ it?.position }, "position")
            Correspondence.transforming<Breakpoint, Float>({ it.position }, "position")

        /** Returns a factory to be used with [Truth.assertAbout]. */
        val SubjectFactory =