Author: rdonkin
Date: Sat Dec 7 11:36:07 2013
New Revision: 1548893
URL: http://svn.apache.org/r1548893
Log:
Format Code.
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/InvalidXmlException.java
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/InvalidXmlException.java
URL:
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/InvalidXmlException.java?rev=1548893&r1=1548892&r2=1548893&view=diff
==============================================================================
---
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/InvalidXmlException.java
(original)
+++
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/InvalidXmlException.java
Sat Dec 7 11:36:07 2013
@@ -15,21 +15,21 @@
* KIND, either express or implied. See the License for the *
* specific language governing permissions and limitations *
* under the License. *
- */
+ */
package org.apache.rat.report.xml.writer;
import java.io.IOException;
/**
* Indicates that the requested document would not be well formed.
- *
+ *
*/
public class InvalidXmlException extends IOException {
- private static final long serialVersionUID = 1L;
+ private static final long serialVersionUID = 1L;
- public InvalidXmlException(String s) {
- super(s);
- }
+ public InvalidXmlException(String s) {
+ super(s);
+ }
}