Skip to content

Commit 8af27e7

Browse files
fix: apply spotless formatting
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f656c31 commit 8af27e7

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

  • src/main/java/io/getstream/chat/java/models

src/main/java/io/getstream/chat/java/models/User.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1135,7 +1135,9 @@ public UserUnbanRequest removeFutureChannelsBan(@NotNull Boolean removeFutureCha
11351135

11361136
@Override
11371137
protected Call<StreamResponseObject> generateCall(Client client) {
1138-
return client.create(UserService.class).unban(targetUserId, type, id, shadow, removeFutureChannelsBan);
1138+
return client
1139+
.create(UserService.class)
1140+
.unban(targetUserId, type, id, shadow, removeFutureChannelsBan);
11391141
}
11401142
}
11411143

@@ -1231,7 +1233,8 @@ public static class UserQueryFutureChannelBansRequestData {
12311233
@JsonProperty("offset")
12321234
private Integer offset;
12331235

1234-
public static class UserQueryFutureChannelBansRequest extends StreamRequest<UserQueryFutureChannelBansResponse> {
1236+
public static class UserQueryFutureChannelBansRequest
1237+
extends StreamRequest<UserQueryFutureChannelBansResponse> {
12351238
@Override
12361239
protected Call<UserQueryFutureChannelBansResponse> generateCall(Client client) {
12371240
return client.create(UserService.class).queryFutureChannelBans(this.internalBuild());

0 commit comments

Comments
 (0)