Skip to content

Commit bfbc545

Browse files
committed
rename handleIdentityMapCommon to processIdentityMapV2Response to avoid confusion
1 parent 5b28f5f commit bfbc545

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/uid2/operator/vertx/UIDOperatorVerticle.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1113,7 +1113,7 @@ private boolean isTokenInputValid(InputUtil.InputVal input, RoutingContext rc) {
11131113
return true;
11141114
}
11151115

1116-
private JsonObject handleIdentityMapCommon(RoutingContext rc, InputUtil.InputVal[] inputList) {
1116+
private JsonObject processIdentityMapV2Response(RoutingContext rc, InputUtil.InputVal[] inputList) {
11171117
RuntimeConfig config = getConfigFromRc(rc);
11181118
IdentityEnvironment env = config.getIdentityEnvironment();
11191119

@@ -1231,7 +1231,7 @@ private void handleIdentityMapV2(RoutingContext rc) {
12311231

12321232
if (!validateServiceLink(rc)) { return; }
12331233

1234-
final JsonObject resp = handleIdentityMapCommon(rc, inputList);
1234+
final JsonObject resp = processIdentityMapV2Response(rc, inputList);
12351235
ResponseUtil.SuccessV2(rc, resp);
12361236
} catch (Exception e) {
12371237
ResponseUtil.LogErrorAndSendResponse(ResponseStatus.UnknownError, 500, rc, "Unknown error while mapping identity v2", e);

0 commit comments

Comments
 (0)