diff options
author | Sean Leonard <meanderingcode@aetherislands.net> | 2014-02-04 16:56:31 -0800 |
---|---|---|
committer | Sean Leonard <meanderingcode@aetherislands.net> | 2014-02-04 16:56:31 -0800 |
commit | d246e4e0b571874de0927cacf72fb193baabdca9 (patch) | |
tree | 4d5ed9e36d067995ef7690c4d8018c65a587fe7a /src/se/leap/openvpn/LogWindow.java | |
parent | dbf1265f736c00aa31289e75818b1ec56311d31c (diff) |
Deleted unused classes from ics-openvpn.
This classes were an obvious choice, there may be more unused classes
around there.
Conflicts:
src/se/leap/bitmaskclient/ProviderListFragment.java
Diffstat (limited to 'src/se/leap/openvpn/LogWindow.java')
-rw-r--r-- | src/se/leap/openvpn/LogWindow.java | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/se/leap/openvpn/LogWindow.java b/src/se/leap/openvpn/LogWindow.java index c3ce8424..1fe50d6a 100644 --- a/src/se/leap/openvpn/LogWindow.java +++ b/src/se/leap/openvpn/LogWindow.java @@ -227,18 +227,6 @@ public class LogWindow extends ListActivity implements StateListener { } else if(item.getItemId()==R.id.send) { ladapter.shareLog(); - } else if(item.getItemId()==R.id.edit_vpn) { - VpnProfile lastConnectedprofile = ProfileManager.getLastConnectedVpn(); - - if(lastConnectedprofile!=null) { - Intent vprefintent = new Intent(this,VPNPreferences.class) - .putExtra(VpnProfile.EXTRA_PROFILEUUID,lastConnectedprofile.getUUIDString()); - startActivityForResult(vprefintent,START_VPN_CONFIG); - } else { - Toast.makeText(this, R.string.log_no_last_vpn, Toast.LENGTH_LONG).show(); - } - - } return super.onOptionsItemSelected(item); |