diff options
3 files changed, 0 insertions, 36 deletions
diff --git a/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java b/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java index ad5d08e209..140b293b46 100644 --- a/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java +++ b/catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java @@ -37,7 +37,6 @@ import javax.ws.rs.core.Context; import org.openecomp.portalsdk.core.onboarding.util.CipherUtil; import org.openecomp.portalsdk.core.onboarding.util.PortalApiConstants; import org.openecomp.portalsdk.core.onboarding.util.PortalApiProperties; -import org.openecomp.sdc.common.config.EcompErrorName; import org.openecomp.sdc.common.impl.MutableHttpServletRequest; import org.openecomp.sdc.fe.Constants; import org.openecomp.sdc.fe.config.Configuration; diff --git a/catalog-fe/src/test/java/org/openecomp/sdc/servlets/FeProxyServletTest.java b/catalog-fe/src/test/java/org/openecomp/sdc/servlets/FeProxyServletTest.java index f3bd9a75b8..7143e8776b 100644 --- a/catalog-fe/src/test/java/org/openecomp/sdc/servlets/FeProxyServletTest.java +++ b/catalog-fe/src/test/java/org/openecomp/sdc/servlets/FeProxyServletTest.java @@ -25,7 +25,6 @@ import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; -import java.net.URI; import java.util.ArrayList; import java.util.Collections; import java.util.List; diff --git a/common-app-api/src/main/java/org/openecomp/sdc/common/util/EitherPair.java b/common-app-api/src/main/java/org/openecomp/sdc/common/util/EitherPair.java deleted file mode 100644 index 44f0d251c2..0000000000 --- a/common-app-api/src/main/java/org/openecomp/sdc/common/util/EitherPair.java +++ /dev/null @@ -1,34 +0,0 @@ -package org.openecomp.sdc.common.util; - -import fj.data.Either; - -import java.util.function.BiFunction; -import java.util.function.Function; - -public class EitherPair<L, M, R> { - - private Either<L, R> firstEither; - private Either<M, R> secondEither; - - private EitherPair(Either<L, R> firstEither, Either<M, R> secondEither) { - this.firstEither = firstEither; - this.secondEither = secondEither; - } - - public static <L, M, R> EitherPair<L, M, R> from(Either<L, R> firstEither, - Either<M, R> secondEither) { - return new EitherPair<>(firstEither, secondEither); - } - - public <X> X either(BiFunction<L, M, X> onLeft, Function<R, X > onRight) { - if (firstEither.isRight()) { - return onRight.apply(firstEither.right().value()); - } - if (secondEither.isRight()) { - return onRight.apply(secondEither.right().value()); - } - return onLeft.apply(firstEither.left().value(), secondEither.left().value()); - } - - -} |