summaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorlrknox <lrknox>2017-03-21 15:57:40 (GMT)
committerlrknox <lrknox>2017-03-21 15:57:40 (GMT)
commit7e7121fec6a7ac5ef96d2a420e3c5302da60dfc9 (patch)
tree0f5dc5d302c9c28a3d667af9b082a360b373abd3 /java
parentdbff1180b763ae41c4ac6aba6a1ca8c782713f4a (diff)
downloadhdf5-7e7121fec6a7ac5ef96d2a420e3c5302da60dfc9.zip
hdf5-7e7121fec6a7ac5ef96d2a420e3c5302da60dfc9.tar.gz
hdf5-7e7121fec6a7ac5ef96d2a420e3c5302da60dfc9.tar.bz2
Remove incorrect " marks added to java files by bin/h5vers.
Pull version from configure for version test in h5repack_plugin.sh.in
Diffstat (limited to 'java')
-rw-r--r--java/src/hdf/hdf5lib/H5.java4
-rw-r--r--java/test/TestH5.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java
index 16b28fa..168e507 100644
--- a/java/src/hdf/hdf5lib/H5.java
+++ b/java/src/hdf/hdf5lib/H5.java
@@ -216,7 +216,7 @@ import hdf.hdf5lib.structs.H5O_info_t;
* exception handlers to print out the HDF-5 error stack.
* <hr>
*
- * * * * * * * * * * * * * @version HDF5 "1.11.0" <BR>
+ * @version HDF5 1.11.0 <BR>
* <b>See also: <a href ="./hdf.hdf5lib.HDFArray.html"> hdf.hdf5lib.HDFArray</a> </b><BR>
* <a href ="./hdf.hdf5lib.HDF5Constants.html"> hdf.hdf5lib.HDF5Constants</a><BR>
* <a href ="./hdf.hdf5lib.HDF5CDataTypes.html"> hdf.hdf5lib.HDF5CDataTypes</a><BR>
@@ -239,7 +239,7 @@ public class H5 implements java.io.Serializable {
*
* Make sure to update the versions number when a different library is used.
*/
- public final static int LIB_VERSION[] = { "1, 10, 1" };
+ public final static int LIB_VERSION[] = { 1, 10, 1 };
public final static String H5PATH_PROPERTY_KEY = "hdf.hdf5lib.H5.hdf5lib";
diff --git a/java/test/TestH5.java b/java/test/TestH5.java
index 173af8f..4c84988 100644
--- a/java/test/TestH5.java
+++ b/java/test/TestH5.java
@@ -164,7 +164,7 @@ public class TestH5 {
*/
@Test
public void testH5get_libversion() {
- int libversion[] = { "1, 11, 0" };
+ int libversion[] = { 1, 11, 0 };
try {
H5.H5get_libversion(libversion);
@@ -186,7 +186,7 @@ public class TestH5 {
*/
@Test
public void testH5check_version() {
- "int majnum = 1, minnum = 10, relnum = 1";
+ int majnum = 1, minnum = 11, relnum = 0;
try {
H5.H5check_version(majnum, minnum, relnum);