summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-05-25 09:28:18 +0200
committerArne Schwabe <arne@rfc2549.org>2012-05-25 09:28:18 +0200
commit7aab2ed1a75b29c40c0f83b1d48d889b02deb61f (patch)
treecc6e5a78b238c8e424276c37e3681485bc5d0e6e /src
parent8606c50fb2b9715fc9a70033aafcdec6b61cea5c (diff)
Fix errors reported by lint
Diffstat (limited to 'src')
-rw-r--r--src/de/blinkt/openvpn/FileSelect.java3
-rw-r--r--src/de/blinkt/openvpn/Settings_Authentication.java3
-rw-r--r--src/de/blinkt/openvpn/VpnProfile.java2
3 files changed, 5 insertions, 3 deletions
diff --git a/src/de/blinkt/openvpn/FileSelect.java b/src/de/blinkt/openvpn/FileSelect.java
index 62cd9883..c235594e 100644
--- a/src/de/blinkt/openvpn/FileSelect.java
+++ b/src/de/blinkt/openvpn/FileSelect.java
@@ -15,6 +15,7 @@ import android.app.Fragment;
import android.app.FragmentTransaction;
import android.content.Intent;
import android.os.Bundle;
+import android.os.Environment;
public class FileSelect extends Activity {
public static final String RESULT_DATA = "RESULT_PATH";
@@ -36,7 +37,7 @@ public class FileSelect extends Activity {
mData = getIntent().getStringExtra(START_DATA);
if(mData==null)
- mData="/sdcard";
+ mData=Environment.getExternalStorageDirectory().getPath();
String title = getIntent().getStringExtra(WINDOW_TITLE);
int titleId = getIntent().getIntExtra(WINDOW_TITLE, 0);
diff --git a/src/de/blinkt/openvpn/Settings_Authentication.java b/src/de/blinkt/openvpn/Settings_Authentication.java
index b2e84087..6733ed0c 100644
--- a/src/de/blinkt/openvpn/Settings_Authentication.java
+++ b/src/de/blinkt/openvpn/Settings_Authentication.java
@@ -3,6 +3,7 @@ package de.blinkt.openvpn;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
+import android.os.Environment;
import android.preference.CheckBoxPreference;
import android.preference.EditTextPreference;
import android.preference.ListPreference;
@@ -102,7 +103,7 @@ public class Settings_Authentication extends OpenVpnPreferencesFragment implemen
}
void startFileDialog() {
Intent startFC = new Intent(getActivity(),FileSelect.class);
- startFC.putExtra(FileSelect.START_DATA, "/sdcard");
+ startFC.putExtra(FileSelect.START_DATA, Environment.getExternalStorageDirectory().getPath());
startActivityForResult(startFC,SELECT_TLS_FILE);
}
diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java
index 8d721b38..b862bb8c 100644
--- a/src/de/blinkt/openvpn/VpnProfile.java
+++ b/src/de/blinkt/openvpn/VpnProfile.java
@@ -456,7 +456,7 @@ public class VpnProfile implements Serializable{
// Put enough digits togher to make a password :)
Random r = new Random();
for(int i=0;i < 4;i++) {
- pw += new Integer(r.nextInt(1000)).toString();
+ pw += Integer.valueOf(r.nextInt(1000)).toString();
}
mTempPKCS12Password=pw;