diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-06-28 20:27:08 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-06-28 20:27:08 (GMT) |
commit | e2d2a410d02c558bcf04e56a78a6d2c6f3df4026 (patch) | |
tree | a3580ff7154070a097cfc2b004d8e27a5161e7d3 /java/src/hdf/hdf5lib | |
parent | 5a1d2986699d4c8dbad7feec464d9e628973adaf (diff) | |
download | hdf5-e2d2a410d02c558bcf04e56a78a6d2c6f3df4026.zip hdf5-e2d2a410d02c558bcf04e56a78a6d2c6f3df4026.tar.gz hdf5-e2d2a410d02c558bcf04e56a78a6d2c6f3df4026.tar.bz2 |
Remove writeVL option
Diffstat (limited to 'java/src/hdf/hdf5lib')
-rw-r--r-- | java/src/hdf/hdf5lib/H5.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java index 987cc1d..f58623e 100644 --- a/java/src/hdf/hdf5lib/H5.java +++ b/java/src/hdf/hdf5lib/H5.java @@ -2006,8 +2006,9 @@ public class H5 implements java.io.Serializable { (double[]) obj, isCriticalPinning); } else if (is1D && (dataClass.getComponentType() == String.class)) { - log.trace("H5DwriteVL type"); - status = H5DwriteVL(dataset_id, mem_type_id, mem_space_id, file_space_id, xfer_plist_id, (Object[]) obj); + log.trace("H5Dwrite_string type"); + status = H5Dwrite_string(dataset_id, mem_type_id, mem_space_id, file_space_id, xfer_plist_id, + (String[]) obj); } else { HDFArray theArray = new HDFArray(obj); |