You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by rd...@apache.org on 2013/12/08 22:43:01 UTC

svn commit: r1549322 - /creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/claim/util/Pipeline.java

Author: rdonkin
Date: Sun Dec  8 21:43:01 2013
New Revision: 1549322

URL: http://svn.apache.org/r1549322
Log:
Apply PMD change.

Modified:
    creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/claim/util/Pipeline.java

Modified: creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/claim/util/Pipeline.java
URL: http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/claim/util/Pipeline.java?rev=1549322&r1=1549321&r2=1549322&view=diff
==============================================================================
--- creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/claim/util/Pipeline.java (original)
+++ creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/claim/util/Pipeline.java Sun Dec  8 21:43:01 2013
@@ -77,7 +77,7 @@ public class Pipeline implements RatRepo
 			this.policy.analyse(document);
 		}
 
-		for (final RatReport report : this.reporters) {
+		for (RatReport report : this.reporters) {
 			report.report(document);
 		}
 	}
@@ -88,7 +88,7 @@ public class Pipeline implements RatRepo
 	 * @see org.apache.rat.report.RatReport#startReport()
 	 */
 	public void startReport() throws RatException {
-		for (final RatReport report : this.reporters) {
+		for (RatReport report : this.reporters) {
 			report.startReport();
 		}
 	}
@@ -99,7 +99,7 @@ public class Pipeline implements RatRepo
 	 * @see org.apache.rat.report.RatReport#endReport()
 	 */
 	public void endReport() throws RatException {
-		for (final RatReport report : this.reporters) {
+		for (RatReport report : this.reporters) {
 			report.endReport();
 		}
 	}