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>2020-10-16 16:10:35 (GMT)
committerGitHub <noreply@github.com>2020-10-16 16:10:35 (GMT)
commit9bd2102b7747b255b570d428399151296baa17d1 (patch)
treeec69c69944fba94f3586c804b36091fa88d76b0c /java/src/hdf/hdf5lib/structs/H5_ih_info_t.java
parente6cda4817b303e2f984a31a8c20dd12f326772c5 (diff)
downloadhdf5-9bd2102b7747b255b570d428399151296baa17d1.zip
hdf5-9bd2102b7747b255b570d428399151296baa17d1.tar.gz
hdf5-9bd2102b7747b255b570d428399151296baa17d1.tar.bz2
Update javadoc comments to reduce warnings (#41)
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.java9
1 files changed, 6 insertions, 3 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 7159f02..1c3ab80 100644
--- a/java/src/hdf/hdf5lib/structs/H5_ih_info_t.java
+++ b/java/src/hdf/hdf5lib/structs/H5_ih_info_t.java
@@ -15,7 +15,10 @@ package hdf.hdf5lib.structs;
import java.io.Serializable;
-//Information struct for group (for H5Gget_info/H5Gget_info_by_name/H5Gget_info_by_idx)
+/**
+ * Information struct for group (for H5Gget_info/H5Gget_info_by_name/H5Gget_info_by_idx)
+ *
+ */
public class H5_ih_info_t implements Serializable {
private static final long serialVersionUID = -142238015615462707L;
public long index_size; /* btree and/or list */
@@ -38,9 +41,9 @@ public class H5_ih_info_t implements Serializable {
H5_ih_info_t info = (H5_ih_info_t) o;
if (this.index_size != info.index_size)
- return false;
+ return false;
if (this.heap_size != info.heap_size)
- return false;
+ return false;
return true;
}