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

Commit 791dcea0 authored by Mathias Agopian's avatar Mathias Agopian Committed by Android Git Automerger
Browse files

am 9ca6491b: Region::validate() cannot be called from addRectUnchecked()

* commit '9ca6491b':
  Region::validate() cannot be called from addRectUnchecked()
parents 57ffbe99 9ca6491b
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -114,10 +114,6 @@ void Region::addRectUnchecked(int l, int t, int r, int b)
    Rect rect(l,t,r,b);
    size_t where = mStorage.size() - 1;
    mStorage.insertAt(rect, where, 1);

#if VALIDATE_REGIONS
    validate(*this, "addRectUnchecked");
#endif
}

// ----------------------------------------------------------------------------