Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Axel Huebl <[email protected]>
  • Loading branch information
franzpoeschel and ax3l authored Feb 7, 2024
1 parent f0837ad commit d9c545c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/IO/HDF5/HDF5IOHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ void HDF5IOHandlerImpl::createDataset(
if (parameters.joinedDimension.has_value())
{
error::throwOperationUnsupportedInBackend(
"ADIOS1", "Joined Arrays currently only supported in ADIOS2");
"HDF5", "Joined Arrays currently only supported in ADIOS2");
}

if (!writable->written)
Expand Down
2 changes: 1 addition & 1 deletion src/IO/JSON/JSONIOHandlerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ void JSONIOHandlerImpl::createDataset(
if (parameter.joinedDimension.has_value())
{
error::throwOperationUnsupportedInBackend(
"ADIOS1", "Joined Arrays currently only supported in ADIOS2");
"JSON", "Joined Arrays currently only supported in ADIOS2");
}

if (!writable->written)
Expand Down

0 comments on commit d9c545c

Please sign in to comment.