use of com.squareup.leakcanary.RefWatcher in project scissors by lyft.
the class MainActivity method onDestroy.
@Override
protected void onDestroy() {
super.onDestroy();
subscriptions.unsubscribe();
RefWatcher refWatcher = App.getRefWatcher(this);
refWatcher.watch(this, "MainActivity");
refWatcher.watch(cropView, "cropView");
}
use of com.squareup.leakcanary.RefWatcher in project CoCoin by Nightonke.
the class ReportViewFragment method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = CoCoinApplication.getRefWatcher(getActivity());
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project CoCoin by Nightonke.
the class TagViewFragment method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = CoCoinApplication.getRefWatcher(getActivity());
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project CoCoin by Nightonke.
the class TodayViewFragment method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = CoCoinApplication.getRefWatcher(getActivity());
refWatcher.watch(this);
}
use of com.squareup.leakcanary.RefWatcher in project CorePage by lizhangqu.
the class MainFragment method onDestroy.
@Override
public void onDestroy() {
super.onDestroy();
RefWatcher refWatcher = BaseApplication.getRefWatcher(getActivity());
refWatcher.watch(this);
}
Aggregations