Cleanup checkstyle issues

This commit is contained in:
Darin Kelkhoff
2022-05-04 07:47:29 -05:00
parent 909798436e
commit 156bb033df
2 changed files with 10 additions and 0 deletions

View File

@ -83,6 +83,7 @@ public class RunProcessAction
/*******************************************************************************
** Load an instance of the appropriate state provider
**
*******************************************************************************/
private StateProviderInterface getStateProvider()
@ -94,6 +95,10 @@ public class RunProcessAction
/*******************************************************************************
** Store the process state from a function result to the state provider
**
*******************************************************************************/
private void storeState(UUIDStateKey stateKey, RunFunctionResult runFunctionResult)
{
getStateProvider().put(stateKey, runFunctionResult.getProcessState());
@ -101,6 +106,10 @@ public class RunProcessAction
/*******************************************************************************
** Load the process state into a function request from the state provider
**
*******************************************************************************/
private void loadState(UUIDStateKey stateKey, RunFunctionRequest runFunctionRequest)
{
ProcessState processState = getStateProvider().get(ProcessState.class, stateKey);

View File

@ -30,6 +30,7 @@ public class MockQueryAction implements QueryInterface
/*******************************************************************************
**
*******************************************************************************/
@SuppressWarnings("checkstyle:Indentation") // for switch expression
public QueryResult execute(QueryRequest queryRequest) throws QException
{
try