sync androidx.preference method signatures with extensions-lib

This commit is contained in:
Aria Moradi
2021-07-31 08:28:45 +04:30
parent 345ca27f85
commit 30787846a2
9 changed files with 148 additions and 37 deletions

View File

@@ -13,9 +13,9 @@ import java.util.LinkedList;
import java.util.List;
public class PreferenceScreen extends Preference {
// Tachidesk API
private List<Preference> preferences = new LinkedList<>();
public PreferenceScreen(Context context) {
super(context);
}
@@ -26,6 +26,7 @@ public class PreferenceScreen extends Preference {
return true;
}
// Tachidesk API
public List<Preference> getPreferences(){
return preferences;
}