summaryrefslogtreecommitdiffstats
path: root/java/src/hdf/hdf5lib/exceptions/HDF5AttributeException.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/hdf/hdf5lib/exceptions/HDF5AttributeException.java')
-rw-r--r--java/src/hdf/hdf5lib/exceptions/HDF5AttributeException.java8
1 files changed, 2 insertions, 6 deletions
diff --git a/java/src/hdf/hdf5lib/exceptions/HDF5AttributeException.java b/java/src/hdf/hdf5lib/exceptions/HDF5AttributeException.java
index 86dad88..4cb7b1d 100644
--- a/java/src/hdf/hdf5lib/exceptions/HDF5AttributeException.java
+++ b/java/src/hdf/hdf5lib/exceptions/HDF5AttributeException.java
@@ -23,9 +23,7 @@ public class HDF5AttributeException extends HDF5LibraryException {
* Constructs an <code>HDF5AttributeException</code> with no specified
* detail message.
*/
- public HDF5AttributeException() {
- super();
- }
+ public HDF5AttributeException() { super(); }
/**
* Constructs an <code>HDF5AttributeException</code> with the specified
@@ -34,7 +32,5 @@ public class HDF5AttributeException extends HDF5LibraryException {
* @param s
* the detail message.
*/
- public HDF5AttributeException(String s) {
- super(s);
- }
+ public HDF5AttributeException(String s) { super(s); }
}