summaryrefslogtreecommitdiff
path: root/src/de/blinkt/openvpn/VpnProfile.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/blinkt/openvpn/VpnProfile.java')
-rw-r--r--src/de/blinkt/openvpn/VpnProfile.java2
1 files changed, 1 insertions, 1 deletions
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;