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

* commit '9ca6491bb701919a3f88fa7c43da284b13822ed6':
  Region::validate() cannot be called from addRectUnchecked()
This commit is contained in:
Mathias Agopian 2012-09-12 18:01:27 -07:00 committed by Android Git Automerger
commit 791dcea018

View File

@ -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
}
// ----------------------------------------------------------------------------