use of com.squareup.leakcanary.RefWatcher in project MusicDNA by harjot-oberai.
the class PlayerFragment 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 QueueFragment 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 FavouritesFragment 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 FolderContentFragment 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 onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = MusicDNAApplication.getRefWatcher(getContext());
refWatcher.watch(this);
}
Aggregations