fix: Clear the child of the saved specs before clearing them (#131)

* fix: Clear the child of the saved specs before clearing them

* chore: Remove second semicolomn
This commit is contained in:
Vladimir Amiorkov
2018-08-24 17:04:36 +03:00
committed by GitHub
parent 32e59e47d6
commit 0973992350

View File

@@ -226,6 +226,7 @@ public class GridLayout extends LayoutBase {
}
private void removeFromMap(View child) {
this.map.get(child).child = null;
this.map.remove(child);
}
@@ -374,7 +375,7 @@ class MeasureSpecs {
public boolean measured = false;
public final View child;
public View child;
private ItemSpec column;
private ItemSpec row;
private int columnIndex;