1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 18:29:23 +02:00

pathArray => pathList

This commit is contained in:
Nikolay Pultsin 2014-05-03 14:18:25 +01:00
parent 3af51e5348
commit f5df3fd3aa
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@ class FileChooserStringListPreference extends FileChooserPreference {
@Override
protected void setValueFromIntent(Intent data) {
final List<String> value = FileChooserUtil.pathArrayFromData(data);
final List<String> value = FileChooserUtil.pathListFromData(data);
if (value.isEmpty()) {
return;
}

View file

@ -77,7 +77,7 @@ public abstract class FileChooserUtil {
return data.getStringExtra(FileChooserActivity._FolderPath);
}
public static List<String> pathArrayFromData(Intent data) {
public static List<String> pathListFromData(Intent data) {
return data.getStringArrayListExtra(FolderListDialogActivity.Key.FOLDER_LIST);
}