aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/compatibility/AndroidLevel19.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/compatibility/AndroidLevel19.java')
-rw-r--r--main/src/cgeo/geocaching/compatibility/AndroidLevel19.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/compatibility/AndroidLevel19.java b/main/src/cgeo/geocaching/compatibility/AndroidLevel19.java
index ed4849f..6b15a00 100644
--- a/main/src/cgeo/geocaching/compatibility/AndroidLevel19.java
+++ b/main/src/cgeo/geocaching/compatibility/AndroidLevel19.java
@@ -5,12 +5,12 @@ import android.app.Activity;
import android.content.Intent;
@TargetApi(19)
-public class AndroidLevel19 implements AndroidLevel19Interface {
+class AndroidLevel19 implements AndroidLevel19Interface {
@Override
public void importGpxFromStorageAccessFramework(final Activity activity, final int requestCode) {
// ACTION_OPEN_DOCUMENT is the intent to choose a file via the system's file browser.
- Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
+ final Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
// Filter to only show results that can be "opened", such as a file (as opposed to a list
// of contacts or timezones)