Fixed variable name
This commit is contained in:
parent
bebd2b449c
commit
c5a06243a6
|
@ -40,13 +40,13 @@ public class DebugSettingsFragment extends BasePreferenceFragment {
|
||||||
assert showErrorSnackbarPreference != null;
|
assert showErrorSnackbarPreference != null;
|
||||||
assert createErrorNotificationPreference != null;
|
assert createErrorNotificationPreference != null;
|
||||||
|
|
||||||
final Optional<DebugSettingsBVLeakCanaryAPI> optPDLeakCanary = getBVLeakCanary();
|
final Optional<DebugSettingsBVLeakCanaryAPI> optBVLeakCanary = getBVLeakCanary();
|
||||||
|
|
||||||
allowHeapDumpingPreference.setEnabled(optPDLeakCanary.isPresent());
|
allowHeapDumpingPreference.setEnabled(optBVLeakCanary.isPresent());
|
||||||
showMemoryLeaksPreference.setEnabled(optPDLeakCanary.isPresent());
|
showMemoryLeaksPreference.setEnabled(optBVLeakCanary.isPresent());
|
||||||
|
|
||||||
if (optPDLeakCanary.isPresent()) {
|
if (optBVLeakCanary.isPresent()) {
|
||||||
final DebugSettingsBVLeakCanaryAPI pdLeakCanary = optPDLeakCanary.get();
|
final DebugSettingsBVLeakCanaryAPI pdLeakCanary = optBVLeakCanary.get();
|
||||||
|
|
||||||
showMemoryLeaksPreference.setOnPreferenceClickListener(preference -> {
|
showMemoryLeaksPreference.setOnPreferenceClickListener(preference -> {
|
||||||
startActivity(pdLeakCanary.getNewLeakDisplayActivityIntent());
|
startActivity(pdLeakCanary.getNewLeakDisplayActivityIntent());
|
||||||
|
|
Loading…
Reference in New Issue