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

Commit 27e8f1a3 authored by Conley Owens's avatar Conley Owens Committed by Android Git Automerger
Browse files

am 8b22ef66: am e41d2aed: Merge "Using robust equality check."

* commit '8b22ef66':
  Using robust equality check.
parents 014757ee 8b22ef66
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1170,7 +1170,7 @@ public abstract class Layout {
        if (h2 < 0.5f)
            h2 = 0.5f;

        if (h1 == h2) {
        if (Float.compare(h1, h2) == 0) {
            dest.moveTo(h1, top);
            dest.lineTo(h1, bottom);
        } else {