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

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

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

* commit '791dcea0':
  Region::validate() cannot be called from addRectUnchecked()
parents 18a84b4c 791dcea0
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
}

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