Author: rdonkin
Date: Sat Dec 7 11:23:18 2013
New Revision: 1548878
URL: http://svn.apache.org/r1548878
Log:
Apply PMD Rules.
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/RatReport.java
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/RatReport.java
URL:
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/RatReport.java?rev=1548878&r1=1548877&r2=1548878&view=diff
==============================================================================
---
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/RatReport.java
(original)
+++
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/RatReport.java
Sat Dec 7 11:23:18 2013
@@ -32,7 +32,7 @@ public interface RatReport {
* @throws RatException
* the rat exception
*/
- public void startReport() throws RatException;
+ void startReport() throws RatException;
/**
* Report.
@@ -42,7 +42,7 @@ public interface RatReport {
* @throws RatException
* the rat exception
*/
- public void report(Document document) throws RatException;
+ void report(Document document) throws RatException;
/**
* End report.
@@ -50,5 +50,5 @@ public interface RatReport {
* @throws RatException
* the rat exception
*/
- public void endReport() throws RatException;
+ void endReport() throws RatException;
}