summaryrefslogtreecommitdiffstats
path: root/java/src/jni/h5dImp.h
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-11 20:59:52 (GMT)
committerGitHub <noreply@github.com>2022-07-11 20:59:52 (GMT)
commitb9d1d66ab84b492691d3c73e71b1374a7da19e50 (patch)
tree91094aab994ae89fa356bd926726b3909f86d58e /java/src/jni/h5dImp.h
parent663321087a73e760a028517584731eb8ef308ba2 (diff)
downloadhdf5-b9d1d66ab84b492691d3c73e71b1374a7da19e50.zip
hdf5-b9d1d66ab84b492691d3c73e71b1374a7da19e50.tar.gz
hdf5-b9d1d66ab84b492691d3c73e71b1374a7da19e50.tar.bz2
Develop HDFFV-11310 (#1811)
* Rework java vl check in read/write. Handle old refs in h5dump * Committing clang-format changes * Java changes allow default VL reads * Fix JNI utility for old refs * HDFFV-11310 - implement vlen read/write for atomic types. * format check fix * Mostly format fixes * More format issues * Two format changes * Use JNI names for sizeof * format change * fix size typo * Change to older method to initialize list * remove unused var * format fix * switch writeVL functions to use datatype instead of java type * Add VL option to generic read/write check * Correct function name typo * Add JIRA issue * Correct note to match change in code. * HDFFV-11318 add VL references as byte arrays * Add release note and format changes * Another format update * Fix unreleased allocations * Fix format * format correction Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'java/src/jni/h5dImp.h')
-rw-r--r--java/src/jni/h5dImp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/jni/h5dImp.h b/java/src/jni/h5dImp.h
index e339dad..f79cc2c 100644
--- a/java/src/jni/h5dImp.h
+++ b/java/src/jni/h5dImp.h
@@ -177,7 +177,7 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5Dwrite_1double(JNIEnv *, jclass, jl
/*
* Class: hdf_hdf5lib_H5
* Method: H5DreadVL
- * Signature: (JJJJJ[Ljava/lang/String;)I
+ * Signature: (JJJJJ[Ljava/util/ArrayList;)I
*/
JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5DreadVL(JNIEnv *, jclass, jlong, jlong, jlong, jlong, jlong,
jobjectArray);
@@ -185,7 +185,7 @@ JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5DreadVL(JNIEnv *, jclass, jlong, jl
/*
* Class: hdf_hdf5lib_H5
* Method: H5DwriteVL
- * Signature: (JJJJJ[Ljava/lang/String;)I
+ * Signature: (JJJJJ[Ljava/util/ArrayList;)I
*/
JNIEXPORT jint JNICALL Java_hdf_hdf5lib_H5_H5DwriteVL(JNIEnv *, jclass, jlong, jlong, jlong, jlong, jlong,
jobjectArray);