summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2013-08-15 12:25:49 +0200
committerArne Schwabe <arne@rfc2549.org>2013-08-15 12:25:49 +0200
commit6c8337fe114e97b10982a4a30df5a3373a1f39ae (patch)
tree840e9ccbbf55aa7a37c9fb398e0b92f777fe269c
parent3a94f66677fe7b5ae3ecd5743462318d322010e4 (diff)
remove leftover debug code
--HG-- extra : rebase_source : 97daba2653792c7a9d62901e85ce8d24d18eb915
-rw-r--r--src/de/blinkt/openvpn/VpnProfile.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java
index 879e34e4..6b7cffab 100644
--- a/src/de/blinkt/openvpn/VpnProfile.java
+++ b/src/de/blinkt/openvpn/VpnProfile.java
@@ -449,7 +449,7 @@ public class VpnProfile implements Serializable {
for (String route : mCustomRoutes.split("[\n \t]")) {
if (!route.equals("")) {
String cidrroute = cidrToIPAndNetmask(route);
- if (cidrRoutes == null)
+ if (cidrroute == null)
return null;
cidrRoutes.add(cidrroute);
@@ -806,8 +806,6 @@ public class VpnProfile implements Serializable {
private String processSignJellyBeans(PrivateKey privkey, byte[] data) {
Exception err = null;
try {
- Method[] allm = privkey.getClass().getSuperclass().getDeclaredMethods();
- System.out.println(allm);
Method getKey = privkey.getClass().getSuperclass().getDeclaredMethod("getOpenSSLKey");
getKey.setAccessible(true);