diff options
| author | Allen Byrne <byrn@hdfgroup.org> | 2018-03-14 20:16:08 (GMT) |
|---|---|---|
| committer | Allen Byrne <byrn@hdfgroup.org> | 2018-03-14 20:16:08 (GMT) |
| commit | ff569918f035676264bd50ee15a083c8feeadf8e (patch) | |
| tree | 1ae6242288ce2c7cac5e7b6562b3dbf3c8c4c739 /java/src/hdf/hdf5lib/H5.java | |
| parent | f30873136be7cb444166d019c57d3508ff79fc76 (diff) | |
| parent | 970857cc91cb82573110fe989053a334bcfb4c89 (diff) | |
| download | hdf5-ff569918f035676264bd50ee15a083c8feeadf8e.zip hdf5-ff569918f035676264bd50ee15a083c8feeadf8e.tar.gz hdf5-ff569918f035676264bd50ee15a083c8feeadf8e.tar.bz2 | |
Merge pull request #952 in HDFFV/hdf5 from ~BYRN/hdf5_adb:hdf5_1_10 to hdf5_1_10
* commit '970857cc91cb82573110fe989053a334bcfb4c89':
Remove duplication
HDFFV-10412 add complemnt to java error_off
Correct cutnpaste
Merge changes from develop
Merge 10414, 10292, VFD fix from develop
Diffstat (limited to 'java/src/hdf/hdf5lib/H5.java')
| -rw-r--r-- | java/src/hdf/hdf5lib/H5.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java index 732cdfc..7c1ff5b 100644 --- a/java/src/hdf/hdf5lib/H5.java +++ b/java/src/hdf/hdf5lib/H5.java @@ -424,7 +424,7 @@ public class H5 implements java.io.Serializable { private synchronized static native int H5dont_atexit() throws HDF5LibraryException; /** - * Turn off error handling By default, the C library prints the error stack of the HDF-5 C library on stdout. This + * Turn off error handling. By default, the C library prints the error stack of the HDF-5 C library on stdout. This * behavior may be disabled by calling H5error_off(). * * @return a non-negative value if successful @@ -432,6 +432,12 @@ public class H5 implements java.io.Serializable { public synchronized static native int H5error_off(); /** + * Turn on error handling. By default, the C library prints the error stack of the HDF-5 C library on stdout. This + * behavior may be reenabled by calling H5error_on(). + */ + public synchronized static native void H5error_on(); + + /** * H5garbage_collect collects on all free-lists of all types. * * @return a non-negative value if successful |
