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 authored and ypbnv committed Feb 22, 2018
1 parent 30de1b1 commit b800796
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
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 b800796

Please sign in to comment.