mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-11 18:29:05 +01:00
Fix lint warnings.
This commit is contained in:
@@ -91,10 +91,8 @@ public class PanicPreferencesFragment extends PreferenceFragmentCompat
|
||||
entryValues.add(resolveInfo.activityInfo.packageName);
|
||||
}
|
||||
|
||||
panicAppPref.setEntries(
|
||||
entries.toArray(new CharSequence[entries.size()]));
|
||||
panicAppPref.setEntryValues(
|
||||
entryValues.toArray(new CharSequence[entryValues.size()]));
|
||||
panicAppPref.setEntries(entries.toArray(new CharSequence[0]));
|
||||
panicAppPref.setEntryValues(entryValues.toArray(new CharSequence[0]));
|
||||
panicAppPref.setDefaultValue(PACKAGE_NAME_NONE);
|
||||
|
||||
panicAppPref.setOnPreferenceChangeListener((preference, newValue) -> {
|
||||
|
||||
Reference in New Issue
Block a user