Replace lambda with method reference
This commit is contained in:
parent
df131cdd0d
commit
fe8993803d
|
@ -494,7 +494,7 @@ public class PreferenceController implements SharedPreferences.OnSharedPreferenc
|
||||||
alert.setTitle(R.string.export_error_label);
|
alert.setTitle(R.string.export_error_label);
|
||||||
alert.setMessage(error.getMessage());
|
alert.setMessage(error.getMessage());
|
||||||
alert.show();
|
alert.show();
|
||||||
}, () -> progressDialog.dismiss());
|
}, progressDialog::dismiss);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue