From 9c76911a3f0a4d290656eab28ce0b35193e502b7 Mon Sep 17 00:00:00 2001 From: M66B Date: Sat, 30 Dec 2023 14:25:52 +0100 Subject: [PATCH] Cleanup --- .../main/java/eu/faircode/email/FragmentOptionsConnection.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/main/java/eu/faircode/email/FragmentOptionsConnection.java b/app/src/main/java/eu/faircode/email/FragmentOptionsConnection.java index d624d28835..91a226c1ca 100644 --- a/app/src/main/java/eu/faircode/email/FragmentOptionsConnection.java +++ b/app/src/main/java/eu/faircode/email/FragmentOptionsConnection.java @@ -95,7 +95,6 @@ public class FragmentOptionsConnection extends FragmentBase implements SharedPre private SwitchCompat swBindSocket; private SwitchCompat swStandaloneVpn; private SwitchCompat swTcpKeepAlive; - private TextView tvTcpKeepAliveHint; private SwitchCompat swSslUpdate; private SwitchCompat swSslHarden; private SwitchCompat swSslHardenStrict; @@ -159,7 +158,6 @@ public class FragmentOptionsConnection extends FragmentBase implements SharedPre swBindSocket = view.findViewById(R.id.swBindSocket); swStandaloneVpn = view.findViewById(R.id.swStandaloneVpn); swTcpKeepAlive = view.findViewById(R.id.swTcpKeepAlive); - tvTcpKeepAliveHint = view.findViewById(R.id.tvTcpKeepAliveHint); swSslUpdate = view.findViewById(R.id.swSslUpdate); swSslHarden = view.findViewById(R.id.swSslHarden); swSslHardenStrict = view.findViewById(R.id.swSslHardenStrict);