remove all destructors

This commit is contained in:
Paddy Xu
2018-01-24 19:11:16 +02:00
parent 4b9b6c7233
commit 76dd2feb30
15 changed files with 4 additions and 70 deletions

View File

@@ -37,11 +37,6 @@ namespace QuickLook.Plugin.ArchiveViewer
IconManager.ClearCache();
}
~ArchiveFileListView()
{
Dispose();
}
public void SetDataContext(object context)
{
treeGrid.DataContext = context;

View File

@@ -74,11 +74,6 @@ namespace QuickLook.Plugin.ArchiveViewer
public event PropertyChangedEventHandler PropertyChanged;
~ArchiveInfoPanel()
{
Dispose();
}
private void BeginLoadArchive(string path)
{
new Task(() =>

View File

@@ -62,10 +62,5 @@ namespace QuickLook.Plugin.ArchiveViewer
_panel?.Dispose();
_panel = null;
}
~Plugin()
{
Cleanup();
}
}
}