Checkstyle

This commit is contained in:
2024-03-14 11:27:33 -05:00
parent 2fec4891d3
commit aa69f0e7d7
2 changed files with 5 additions and 3 deletions

View File

@ -292,6 +292,7 @@ public class QScheduleManager
{ {
throw new NotImplementedException("ScheduledJob table automations are not yet implemented..."); throw new NotImplementedException("ScheduledJob table automations are not yet implemented...");
} }
default -> throw new IllegalStateException("Unexpected value: " + ScheduledJobType.getById(scheduledJob.getType()));
} }
} }
@ -321,6 +322,7 @@ public class QScheduleManager
{ {
throw new NotImplementedException("ScheduledJob table automations are not yet implemented..."); throw new NotImplementedException("ScheduledJob table automations are not yet implemented...");
} }
default -> throw new IllegalStateException("Unexpected value: " + ScheduledJobType.getById(scheduledJob.getType()));
} }
} }

View File

@ -83,9 +83,9 @@ public class QuartzScheduler implements QSchedulerInterface
private Scheduler scheduler; private Scheduler scheduler;
private final static String GROUP_NAME_PROCESSES = "processes"; private static final String GROUP_NAME_PROCESSES = "processes";
private final static String GROUP_NAME_SQS_QUEUES = "sqsQueues"; private static final String GROUP_NAME_SQS_QUEUES = "sqsQueues";
private final static String GROUP_NAME_TABLE_AUTOMATIONS = "tableAutomations"; private static final String GROUP_NAME_TABLE_AUTOMATIONS = "tableAutomations";
///////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////