summaryrefslogtreecommitdiffstats
path: root/java/src/hdf/hdf5lib/structs/H5_ih_info_t.java
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2021-03-12 13:48:16 (GMT)
committerGitHub <noreply@github.com>2021-03-12 13:48:16 (GMT)
commit579b266e65974fad1f7c30ac5c7c24405e2d326e (patch)
tree5ffbf27400a32e5b68493c6f4e41af2d5919818e /java/src/hdf/hdf5lib/structs/H5_ih_info_t.java
parentc6a2cc29f3623af0ab9cc7a80922d7ef6502e7a8 (diff)
downloadhdf5-579b266e65974fad1f7c30ac5c7c24405e2d326e.zip
hdf5-579b266e65974fad1f7c30ac5c7c24405e2d326e.tar.gz
hdf5-579b266e65974fad1f7c30ac5c7c24405e2d326e.tar.bz2
1 12 JNI export references and java updates (#464)
* OESS-98 fix tools test for plugins * sync fork * Merge of changes from dev * Move problem option to bottom of the list until fixed * HDFFV-11106 - fix parsing optional args * HDFFV-11106 add note * grammer fix * Whitespace after clang formatting * Undo format version 11 changes * Update check to working version * Merge workflow and minor changes from develop * Update supported platforms * PR#3 merge from develop * Merge gcc 10 diagnostics option from develop * Merge #318 OSX changes from develop * Merge serval small changes from dev * fix typo * Minor non-space formatting changes * GH #386 copyright corrections for java folder * revert because logic requires false return * Merges from develop #358 patches from vtk #361 fix header guard spelling * Remove case statement for H5I_EVENTSET * Correct call with versioning * Remove tabs * Double underscore change * Merges from develop #340 clang -Wformat-security warnings #360 Fixed uninitialized warnings Remove more underscores from header guards * Merge #380 from develop * Correct date entry * Split format source and commit changes on repo push * remove pre-split setting * Change windows TS to use older VS. * HDFFV-11212 JNI export util and Javadoc * Suggested review changes * Another change found * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'java/src/hdf/hdf5lib/structs/H5_ih_info_t.java')
-rw-r--r--java/src/hdf/hdf5lib/structs/H5_ih_info_t.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/java/src/hdf/hdf5lib/structs/H5_ih_info_t.java b/java/src/hdf/hdf5lib/structs/H5_ih_info_t.java
index 0551469..0c6111b 100644
--- a/java/src/hdf/hdf5lib/structs/H5_ih_info_t.java
+++ b/java/src/hdf/hdf5lib/structs/H5_ih_info_t.java
@@ -20,7 +20,9 @@ import java.io.Serializable;
*/
public class H5_ih_info_t implements Serializable {
private static final long serialVersionUID = -142238015615462707L;
- public long index_size; /* btree and/or list */
+ /** btree and/or list size of index */
+ public long index_size;
+ /** btree and/or list size of hp */
public long heap_size;
H5_ih_info_t (long index_size, long heap_size)