Skip to content

Commit

Permalink
馃毃 fixing linter warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Fihlon <[email protected]>
  • Loading branch information
McPringle committed Jun 28, 2024
1 parent f654a89 commit 1f1896f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
import org.jetbrains.annotations.NotNull;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.EnableConfigurationProperties;

import swiss.fihlon.apus.event.Session;
import swiss.fihlon.apus.plugin.event.EventConfig;
import swiss.fihlon.apus.plugin.event.demo.DemoConfig;
import swiss.fihlon.apus.plugin.event.doag.DoagConfig;
Expand Down Expand Up @@ -108,7 +106,9 @@ public SessionizeConfig getSessionize() {
return sessionize;
}

public void setSessionize(@NotNull final SessionizeConfig sessionize) { this.sessionize = sessionize;}
public void setSessionize(@NotNull final SessionizeConfig sessionize) {
this.sessionize = sessionize;
}

///////////////////////////
// Social Plugin Configs //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public boolean isEnabled() {
}


Session session = new Session(id,startDate, endDate, room, title,
Session session = new Session(id, startDate, endDate, room, title,
speakers.stream().map(Speaker::new).toList(), Language.EN, Track.NONE);

sessions.add(session);
Expand Down

0 comments on commit 1f1896f

Please sign in to comment.