Skip to content

Commit

Permalink
[TIMOB-25693] Do not clear sections property
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary Mathews committed Feb 22, 2018
1 parent 57fd61a commit 4439d83
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1089,16 +1089,6 @@ public void release()
public void releaseViews()
{
listView = null;

if (listItemData != null) {
listItemData.clear();
listItemData = null;
}

if (itemProperties != null) {
itemProperties.clear();
itemProperties = null;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -900,9 +900,6 @@ protected void processSections(Object[] sections)
}
this.sections.clear();

// TIMOB-25693: remove reference from properties
getProxy().getProperties().remove(TiC.PROPERTY_SECTIONS);

for (int i = 0; i < sections.length; i++) {
processSection(sections[i], -1);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1280,10 +1280,7 @@ public void release()
children.clear();
children = null;
}
if (proxy != null) {
proxy.getProperties().clear();
proxy = null;
}
proxy = null;
layoutParams = null;
}

Expand Down

0 comments on commit 4439d83

Please sign in to comment.