Remove inifinite recursion from PagedView

-> thanks adamp@

Change-Id: I36836357f5f194ac69530475b124595174c8b636
This commit is contained in:
Adam Cohen
2015-06-15 11:16:18 -07:00
parent e89cf793ab
commit 5b139a5ca7
+1 -1
View File
@@ -1045,7 +1045,7 @@ public abstract class PagedView extends ViewGroup implements ViewGroup.OnHierarc
public void removeViewAt(int index) {
// XXX: We should find a better way to hook into this before the view
// gets removed form its parent...
removeViewAt(index);
removeMarkerForView(index);
super.removeViewAt(index);
}
@Override