Skip to content

Commit d550486

Browse files
committed
Fix Formatting
1 parent 07d47d1 commit d550486

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

app/src/main/java/org/vss/api/AbstractVssApi.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ public abstract class AbstractVssApi {
1919
@Inject
2020
public AbstractVssApi(KVStore kvStore, Authorizer authorizer) {
2121
this.kvStore = kvStore;
22-
this.authorizer = authorizer;
23-
}
22+
this.authorizer = authorizer;
23+
}
2424

2525
Response toResponse(GeneratedMessageV3 protoResponse) {
2626

app/src/main/java/org/vss/api/GetObjectApi.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
@Slf4j
2020
public class GetObjectApi extends AbstractVssApi {
2121

22-
23-
2422
@Inject
2523
public GetObjectApi(KVStore kvstore, Authorizer authorizer) {
2624
super(kvstore, authorizer);

app/src/main/java/org/vss/auth/NoopAuthorizer.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
// A no-operation authorizer, that lets any user-request go through.
77
public class NoopAuthorizer implements Authorizer {
88
private static String UNAUTHENTICATED_USER = "unauth-user";
9+
910
@Override
1011
public AuthResponse verify(HttpHeaders headers) throws AuthException {
11-
return new AuthResponse( UNAUTHENTICATED_USER);
12+
return new AuthResponse(UNAUTHENTICATED_USER);
1213
}
1314
}

0 commit comments

Comments
 (0)