mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
Cleanup checkstyle issues
This commit is contained in:
@ -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);
|
||||
|
@ -30,6 +30,7 @@ public class MockQueryAction implements QueryInterface
|
||||
/*******************************************************************************
|
||||
**
|
||||
*******************************************************************************/
|
||||
@SuppressWarnings("checkstyle:Indentation") // for switch expression
|
||||
public QueryResult execute(QueryRequest queryRequest) throws QException
|
||||
{
|
||||
try
|
||||
|
Reference in New Issue
Block a user