From 4b1bcd45a69d24170872af32154801883a424090 Mon Sep 17 00:00:00 2001 From: Maxim Thomas <maxim.thomas@gmail.com> Date: Thu, 27 Jan 2022 14:52:49 +0000 Subject: [PATCH] move fips functions to separate class (#206) --- opendj-server-legacy/src/main/java/org/forgerock/opendj/reactive/LDAPConnectionHandler2.java | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/opendj-server-legacy/src/main/java/org/forgerock/opendj/reactive/LDAPConnectionHandler2.java b/opendj-server-legacy/src/main/java/org/forgerock/opendj/reactive/LDAPConnectionHandler2.java index 6746e51..e89dc52 100644 --- a/opendj-server-legacy/src/main/java/org/forgerock/opendj/reactive/LDAPConnectionHandler2.java +++ b/opendj-server-legacy/src/main/java/org/forgerock/opendj/reactive/LDAPConnectionHandler2.java @@ -22,7 +22,7 @@ import static org.opends.server.util.ServerConstants.*; import static org.opends.server.util.StaticUtils.*; -import static com.forgerock.opendj.util.StaticUtils.isFips; +import static com.forgerock.opendj.util.FipsStaticUtils.isFips; import java.io.IOException; import java.net.InetAddress; @@ -94,8 +94,6 @@ import com.forgerock.reactive.ReactiveHandler; import com.forgerock.reactive.Stream; -import java.security.Provider; -import java.security.Security; /** * This class defines a connection handler that will be used for communicating with clients over LDAP. It is actually -- Gitblit v1.10.0