mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
Remove unnecessary null pointer check
This commit is contained in:
parent
141e2d2ad9
commit
71c5e3c611
@ -83,9 +83,8 @@ public class FileBrowserHelper {
|
|||||||
String intentAction = PICK_DIRECTORY_INTENTS[listIndex][0];
|
String intentAction = PICK_DIRECTORY_INTENTS[listIndex][0];
|
||||||
String uriPrefix = PICK_DIRECTORY_INTENTS[listIndex][1];
|
String uriPrefix = PICK_DIRECTORY_INTENTS[listIndex][1];
|
||||||
Intent intent = new Intent(intentAction);
|
Intent intent = new Intent(intentAction);
|
||||||
if (startPath != null) {
|
|
||||||
intent.setData(Uri.parse(uriPrefix + startPath.getPath()));
|
intent.setData(Uri.parse(uriPrefix + startPath.getPath()));
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
c.startActivityForResult(intent, requestcode);
|
c.startActivityForResult(intent, requestcode);
|
||||||
success = true;
|
success = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user