summaryrefslogtreecommitdiff
path: root/src/de/blinkt/openvpn/activities/FileSelect.java
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2014-01-16 23:13:41 +0100
committerArne Schwabe <arne@rfc2549.org>2014-01-16 23:13:41 +0100
commit5ee6a9d698e6231f37a6d2a47e05459d107fb049 (patch)
tree04565f68ac3b3de05e44f6439df6a1f9a847ec5f /src/de/blinkt/openvpn/activities/FileSelect.java
parentfa8d545becf246b6f09d2fb6392d4cc25788346f (diff)
Switch to android file dialog on 4.4 for importing pkcs12, certificates and key files
Diffstat (limited to 'src/de/blinkt/openvpn/activities/FileSelect.java')
-rw-r--r--src/de/blinkt/openvpn/activities/FileSelect.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/activities/FileSelect.java b/src/de/blinkt/openvpn/activities/FileSelect.java
index 405e0dbf..50584063 100644
--- a/src/de/blinkt/openvpn/activities/FileSelect.java
+++ b/src/de/blinkt/openvpn/activities/FileSelect.java
@@ -154,7 +154,7 @@ public class FileSelect extends Activity {
}
}
- private byte[] readBytesFromFile(File file) throws IOException {
+ static private byte[] readBytesFromFile(File file) throws IOException {
InputStream input = new FileInputStream(file);
long len= file.length();