Initialize auditInputList as new list, not null

This commit is contained in:
2023-04-18 13:41:10 -05:00
parent a6e02ea1bf
commit 07e575a7d7

View File

@ -42,7 +42,8 @@ public class RunBackendStepOutput extends AbstractActionOutput implements Serial
private ProcessState processState; private ProcessState processState;
private Exception exception; // todo - make optional private Exception exception; // todo - make optional
private List<AuditInput> auditInputList; private List<AuditInput> auditInputList = new ArrayList<>();
/******************************************************************************* /*******************************************************************************
@ -259,6 +260,7 @@ public class RunBackendStepOutput extends AbstractActionOutput implements Serial
} }
/******************************************************************************* /*******************************************************************************
** Getter for auditInputList ** Getter for auditInputList
*******************************************************************************/ *******************************************************************************/
@ -288,5 +290,4 @@ public class RunBackendStepOutput extends AbstractActionOutput implements Serial
return (this); return (this);
} }
} }