Changed to lambda convention

This commit is contained in:
Somethingweirdhere 2018-05-11 17:17:07 +02:00
parent dcdb2c323e
commit 342b3191ac

View file

@ -274,22 +274,16 @@ public class ContentSettingsFragment extends BasePreferenceFragment {
AlertDialog.Builder alert = new AlertDialog.Builder(getContext()); AlertDialog.Builder alert = new AlertDialog.Builder(getContext());
alert.setTitle(R.string.import_settings); alert.setTitle(R.string.import_settings);
alert.setNegativeButton(android.R.string.no, new DialogInterface.OnClickListener() { alert.setNegativeButton(android.R.string.no, (dialog, which) -> {
@Override dialog.dismiss();
public void onClick(DialogInterface dialog, int which) { // restart app to properly load db
dialog.dismiss(); System.exit(0);
// restart app to properly load db
System.exit(0);
}
}); });
alert.setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() { alert.setPositiveButton(android.R.string.yes, (dialog, which) -> {
@Override dialog.dismiss();
public void onClick(DialogInterface dialog, int which) { loadSharedPreferences(newpipe_settings);
dialog.dismiss(); // restart app to properly load db
loadSharedPreferences(newpipe_settings); System.exit(0);
// restart app to properly load db
System.exit(0);
}
}); });
alert.show(); alert.show();
} else { } else {