HDF5Array arrayify is missing break statement #3056 (#3060)

This commit is contained in:
Allen Byrne 2023-06-06 14:38:59 -05:00 committed by GitHub
parent 1a2d696de4
commit 57c71cb983
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -455,6 +455,7 @@ public class HDFArray {
new HDF5JavaException("HDFArray: unsupported Object type: " + ArrayDescriptor.NT);
throw(ex);
}
break;
} // end of statement for arrays of boxed objects
default:
HDF5JavaException ex =
@ -527,6 +528,7 @@ public class HDFArray {
new HDF5JavaException("HDFArray: unsupported Object type: " + ArrayDescriptor.NT);
throw(ex);
}
break;
} // end of statement for arrays of boxed numerics
} // end of switch statement for arrays of primitives