use of com.squareup.leakcanary.RefWatcher in project MusicDNA by harjot-oberai.
the class EqualizerFragment method onDestroyView.
@Override
public void onDestroyView() {
super.onDestroyView();
RefWatcher refWatcher = MusicDNAApplication.getRefWatcher(getContext());
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project MusicDNA by harjot-oberai.
the class FolderFragment method onDestroyView.
@Override
public void onDestroyView() {
super.onDestroyView();
RefWatcher refWatcher = MusicDNAApplication.getRefWatcher(getContext());
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project MusicDNA by harjot-oberai.
the class FolderFragment method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = MusicDNAApplication.getRefWatcher(getContext());
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project MusicDNA by harjot-oberai.
the class AllPlaylistsFragment method onDestroyView.
@Override
public void onDestroyView() {
super.onDestroyView();
RefWatcher refWatcher = MusicDNAApplication.getRefWatcher(getContext());
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project MusicDNA by harjot-oberai.
the class ViewSavedDNA method onDestroyView.
@Override
public void onDestroyView() {
super.onDestroyView();
RefWatcher refWatcher = MusicDNAApplication.getRefWatcher(getContext());
refWatcher.watch(this);
}
Aggregations