Skip to content
This repository has been archived by the owner on Dec 25, 2017. It is now read-only.

Commit

Permalink
Changes to assure Java 1.6 compliance.
Browse files Browse the repository at this point in the history
  • Loading branch information
aftenkap committed Oct 15, 2014
1 parent 948e776 commit 337c782
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 113 deletions.
21 changes: 0 additions & 21 deletions src/main/java/org/jutility/io/ConversionException.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,25 +80,4 @@ public ConversionException(String message, Throwable cause) {

super(message, cause);
}

/**
* Creates a new instance of a conversion exception with the provided
* message and cause. Provides ability to enable suppression and enable
* writing on the stack trace.
*
* @param message
* the exception message.
* @param cause
* the cause of the exception.
* @param enableSuppression
* whether or not suppression is enabled.
* @param writableStackTrace
* whether or not the stack trace is writable.
*/
public ConversionException(String message, Throwable cause,
boolean enableSuppression, boolean writableStackTrace) {

super(message, cause, enableSuppression, writableStackTrace);
}

}
21 changes: 0 additions & 21 deletions src/main/java/org/jutility/io/SerializationException.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,25 +85,4 @@ public SerializationException(String message, Throwable cause) {

super(message, cause);
}

/**
* Creates a new instance of a serialization exception with the provided
* message and cause. Provides ability to enable suppression and enable
* writing on the stack trace.
*
* @param message
* the exception message.
* @param cause
* the cause of the exception.
* @param enableSuppression
* whether or not suppression is enabled.
* @param writableStackTrace
* whether or not the stack trace is writable.
*/
public SerializationException(String message, Throwable cause,
boolean enableSuppression, boolean writableStackTrace) {

super(message, cause, enableSuppression, writableStackTrace);
}

}
61 changes: 0 additions & 61 deletions src/main/java/org/jutility/io/xml/XmlColorTypeAdapter.java

This file was deleted.

23 changes: 13 additions & 10 deletions src/main/java/org/jutility/io/xml/package-info.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
/**
* * This package contains all the classes required for XML I/O.
*
* @author Peter J. Radics
* @version 1.0
* @since 1.0
*
*/
package org.jutility.io.xml;

/*
* #%L
* jutility-io
Expand All @@ -27,3 +17,16 @@
* limitations under the License.
* #L%
*/

/**
* This package contains all the classes required for XML I/O.
*
* @author Peter J. Radics
* @version 1.0
* @since 1.0
*
*/
package org.jutility.io.xml;



0 comments on commit 337c782

Please sign in to comment.