Skip to content

Commit cc41f22

Browse files
authored
Fix newline bracket
1 parent aad6711 commit cc41f22

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/net/dv8tion/jda/bot/sharding/DefaultShardManagerBuilder.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,8 @@ public DefaultShardManagerBuilder setShards(final int minShardId, final int maxS
624624
public DefaultShardManagerBuilder setShards(Collection<Integer> shardIds)
625625
{
626626
Checks.notNull(shardIds, "shardIds");
627-
for (Integer id : shardIds) {
627+
for (Integer id : shardIds)
628+
{
628629
Checks.notNegative(id, "minShardId");
629630
Checks.check(id < this.shardsTotal, "maxShardId must be lower than shardsTotal");
630631
}

0 commit comments

Comments
 (0)