Skip to content

Commit b619f5e

Browse files
fix checkstyle
1 parent 30e3f01 commit b619f5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/javadiscord/javabot/systems/moderation/warn/WarnExportSubcommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public void execute(@NotNull SlashCommandInteractionEvent event) {
8585
.build())
8686
.addFiles(FileUpload.fromData(pis, "warns"+target.getId()+".txt"))
8787
.queue();
88-
for (Iterator<Warn> it = warns.iterator(); it.hasNext()) {
88+
for (Iterator<Warn> it = warns.iterator(); it.hasNext();) {
8989
Warn warn = it.next();
9090
pw.println("Reason: \"" + warn.getReason()+"\"");
9191
pw.println("Severity: " + warn.getSeverity() + "(" + warn.getSeverityWeight() + ")");

0 commit comments

Comments
 (0)