Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f6d87a0c authored by Elv1zz's avatar Elv1zz Committed by Tobias Kaminsky (Rebase PR Action)
Browse files

Codacy: One declaration per line



Use one line for each declaration, it enhances code readability.

Signed-off-by: default avatarElv1zz <elv1zz.git@gmail.com>
parent 478ceeaf
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -876,7 +876,8 @@ public class AdvancedX509KeyManager implements X509KeyManager, Application.Activ
         }
         if (hostname != null && filter.hostname != null && !filter.hostname.equals(hostname)) {
            // Resolve hostname fields to ip addresses
            InetAddress address = null, filterAddress = null;
            InetAddress address = null;
            InetAddress filterAddress = null;
            try {
               address = InetAddress.getByName(hostname);
            } catch (UnknownHostException e) {