Skip to content

Commit 06175ba

Browse files
committed
improve formatting
1 parent f7492f1 commit 06175ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/discordjug/javabot/systems/help/ClearOldHelpNotificationJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void execute() {
4646
private void deleteOldMessagesInChannel(TextChannel helpNotificationChannel, MessageHistory history, List<Message> foundSoFar) {
4747
history.retrievePast(50).queue(msgs -> {
4848
foundSoFar.addAll(
49-
msgs
49+
msgs
5050
.stream()
5151
.filter(msg -> msg.getAuthor().getIdLong() == msg.getJDA().getSelfUser().getIdLong())
5252
.filter(msg -> msg.getTimeCreated().isBefore(OffsetDateTime.now().minusDays(5)))

0 commit comments

Comments
 (0)