Skip to content

Commit 28262c7

Browse files
committed
Fixed class braces
1 parent fd4172b commit 28262c7

File tree

6 files changed

+0
-12
lines changed

6 files changed

+0
-12
lines changed

src/main/java/com/uid2/operator/model/RefreshResponse.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import java.time.Duration;
44

55
public class RefreshResponse {
6-
76
public static RefreshResponse Invalid = new RefreshResponse(Status.Invalid, IdentityTokens.LogoutToken);
87
public static RefreshResponse Optout = new RefreshResponse(Status.Optout, IdentityTokens.LogoutToken);
98
public static RefreshResponse Expired = new RefreshResponse(Status.Expired, IdentityTokens.LogoutToken);
@@ -65,5 +64,4 @@ public enum Status {
6564
Expired,
6665
Deprecated
6766
}
68-
6967
}

src/main/java/com/uid2/operator/service/IUIDOperatorService.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import java.util.List;
1010

1111
public interface IUIDOperatorService {
12-
1312
IdentityTokens generateIdentity(IdentityRequest request);
1413

1514
RefreshResponse refreshIdentity(RefreshToken refreshToken);
@@ -23,5 +22,4 @@ public interface IUIDOperatorService {
2322
boolean advertisingTokenMatches(String advertisingToken, UserIdentity userIdentity, Instant asOf);
2423

2524
Instant getLatestOptoutEntry(UserIdentity userIdentity, Instant asOf);
26-
2725
}

src/main/java/com/uid2/operator/service/InputUtil.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import java.time.Instant;
88

99
public class InputUtil {
10-
1110
private static String GMAILDOMAIN = "gmail.com";
1211

1312
private static int MIN_PHONENUMBER_DIGITS = 10;
@@ -271,5 +270,4 @@ public UserIdentity toUserIdentity(IdentityScope identityScope, int privacyBits,
271270
establishedAt);
272271
}
273272
}
274-
275273
}

src/main/java/com/uid2/operator/service/ResponseUtil.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import java.util.HashMap;
99

1010
public class ResponseUtil {
11-
1211
public static void SuccessNoBody(String status, RoutingContext rc) {
1312
final JsonObject json = new JsonObject(new HashMap<String, Object>() {
1413
{
@@ -74,7 +73,5 @@ public static void Error(String errorStatus, int statusCode, RoutingContext rc,
7473
}
7574
rc.response().setStatusCode(statusCode).putHeader(HttpHeaders.CONTENT_TYPE, "application/json")
7675
.end(json.encode());
77-
7876
}
79-
8077
}

src/main/java/com/uid2/operator/service/UIDOperatorService.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,5 +233,4 @@ private UserToken createUserToken(PublisherIdentity publisherIdentity, UserIdent
233233
private boolean hasGlobalOptOut(UserIdentity userIdentity) {
234234
return this.optOutStore.getLatestEntry(userIdentity) != null;
235235
}
236-
237236
}

src/test/java/com/uid2/operator/nitro/AttestationTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
import java.util.Base64;
2222

2323
public class AttestationTest {
24-
2524
// @Test
2625
// public void testAttestation() throws Exception {
2726
// String enclaveEnvironment = System.getenv("ENCLAVE_ENVIRONMENT");
@@ -87,5 +86,4 @@ public class AttestationTest {
8786
//
8887
// assertEquals(payload, new String(plaintext, StandardCharsets.UTF_8));
8988
// }
90-
9189
}

0 commit comments

Comments
 (0)