Skip to content

Commit

Permalink
Merge pull request #113 from AdamEssenmacher/fix-ios-leak2
Browse files Browse the repository at this point in the history
Another iOS memory leak
  • Loading branch information
roubachof authored Jan 26, 2024
2 parents 6c70a2c + dc0a89b commit 60ee8aa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections;
using System.Collections.Specialized;
using System.ComponentModel;
Expand Down Expand Up @@ -144,10 +144,10 @@ private void CleanUp()
{
if (_collectionView != null)
{
_collectionView.Dispose();
_collectionView.DataSource?.Dispose();
_collectionView.CollectionViewLayout?.Dispose();
_collectionView.Delegate?.Dispose();
_collectionView.Dispose();
_collectionView = null;
}

Expand Down

0 comments on commit 60ee8aa

Please sign in to comment.