From 6a73bc39d35bfa1c220421556b60ca6369651f05 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Tue, 26 Oct 2021 20:05:25 +0200 Subject: [PATCH] connector: remove unused DEFAULT_TLS_VERSION field This constant was left over from the RequestHelper refactoring. It is not used anywhere in our code and likely not used by any downstream project, so we remove it now. --- .../java/de/stklcode/jvault/connector/HTTPVaultConnector.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnector.java b/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnector.java index ebe8b78..9882db0 100644 --- a/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnector.java +++ b/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnector.java @@ -63,8 +63,6 @@ public class HTTPVaultConnector implements VaultConnector { private static final String PATH_UNDELETE = "/undelete/"; private static final String PATH_DESTROY = "/destroy/"; - public static final String DEFAULT_TLS_VERSION = "TLSv1.2"; - private final RequestHelper request; private boolean authorized = false; // Authorization status.