Update javadoc because i can't ever remember if inputStream or outputStream is used for writing or reading

This commit is contained in:
2025-02-14 20:21:32 -06:00
parent 72e175e1a6
commit 2591e6ad44

View File

@ -47,7 +47,8 @@ public class StorageAction
{ {
/******************************************************************************* /*******************************************************************************
** ** create an output stream in the storage backend - that can be written to,
** for the purpose of inserting or writing a file into storage.
*******************************************************************************/ *******************************************************************************/
public OutputStream createOutputStream(StorageInput storageInput) throws QException public OutputStream createOutputStream(StorageInput storageInput) throws QException
{ {
@ -59,7 +60,8 @@ public class StorageAction
/******************************************************************************* /*******************************************************************************
** ** create an input stream in the storage backend - that can be read from,
** for the purpose of getting or reading a file from storage.
*******************************************************************************/ *******************************************************************************/
public InputStream getInputStream(StorageInput storageInput) throws QException public InputStream getInputStream(StorageInput storageInput) throws QException
{ {