summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTal Gitelman <tg851x@intl.att.com>2018-04-30 17:40:28 +0300
committerTal Gitelman <tg851x@intl.att.com>2018-04-30 15:59:04 +0000
commit025a1e762676144b055d2f090386d66620096ac8 (patch)
treebc0ac5daf72bfac743d98b2d86f967070a933762
parent485bacef37de06dbda4d8ba26b775b2a0ccff6bd (diff)
Remove dead code common-app-api
Change-Id: I305c40c3795687d6e8e9bc42ec4f8fb8769020cf Issue-ID: SDC-1270 Signed-off-by: Tal Gitelman <tg851x@intl.att.com>
-rw-r--r--catalog-fe/src/main/java/org/openecomp/sdc/fe/servlets/PortalServlet.java1
-rw-r--r--catalog-fe/src/test/java/org/openecomp/sdc/servlets/FeProxyServletTest.java1
-rw-r--r--common-app-api/src/main/java/org/openecomp/sdc/common/util/EitherPair.java34
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());
- }
-
-
-}