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 | 1992a5feed9911a63898586fc50d2d7123334bdd (patch) | |
tree | 2c6fb878d6b0234a2319cd84092ff6e9d196759a /src/de/blinkt/openvpn/VpnProfile.java | |
parent | 7cde535e0dd59c3ff2b5b8c4b803050bdbc5277d (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; |