Skip to content

Commit

Permalink
🚨 disable linter warning
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Fihlon <[email protected]>
  • Loading branch information
McPringle committed Mar 24, 2024
1 parent c62e492 commit 04a7e60
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ public List<Session> getSessions() {
final JSONObject day = days.getJSONObject(dayCounter);
final LocalDate date = LocalDate.parse(day.getString("date"));
final JSONObject rooms = day.getJSONObject("rooms");
@SuppressWarnings("unchecked")
final Iterator<String> roomKeys = rooms.keys();
while (roomKeys.hasNext()) {
final String roomKey = roomKeys.next();
Expand Down

0 comments on commit 04a7e60

Please sign in to comment.