diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-06-13 23:12:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-13 23:12:14 (GMT) |
commit | 75bcd68e7c0a87de90176513d15bae0e76caea49 (patch) | |
tree | f9689daec8bee4dbb90b5132315abcc0576874dc | |
parent | 4462f730585558532b38f14404333fdeb0033335 (diff) | |
download | hdf5-75bcd68e7c0a87de90176513d15bae0e76caea49.zip hdf5-75bcd68e7c0a87de90176513d15bae0e76caea49.tar.gz hdf5-75bcd68e7c0a87de90176513d15bae0e76caea49.tar.bz2 |
Add note for issue 3056 (#3117)
-rw-r--r-- | release_docs/RELEASE.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 6167e51..2abc003 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -479,7 +479,15 @@ Bug Fixes since HDF5-1.14.0 release Java Library ------------ - - + - Fixed switch case 'L' block missing a break statement. + + The HDF5Array.arrayify method is missing a break statement in the case 'L': section + which causes it to fall through and throw an HDF5JavaException when attempting to + read an Array[Array[Long]]. + + The error was fixed by inserting a break statement at the end of the case 'L': sections. + + Fixes GitHub issue #3056 Configuration |