diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-05-25 09:28:18 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-05-25 09:28:18 +0200 |
commit | 7aab2ed1a75b29c40c0f83b1d48d889b02deb61f (patch) | |
tree | cc6e5a78b238c8e424276c37e3681485bc5d0e6e /src/de/blinkt/openvpn/VpnProfile.java | |
parent | 8606c50fb2b9715fc9a70033aafcdec6b61cea5c (diff) |
Fix errors reported by lint
Diffstat (limited to 'src/de/blinkt/openvpn/VpnProfile.java')
-rw-r--r-- | src/de/blinkt/openvpn/VpnProfile.java | 2 |
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; |