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 21:56:16 UTC

svn commit: r1549230 - /creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/header/FilteringSequenceFactory.java

Author: rdonkin
Date: Sun Dec  8 20:56:16 2013
New Revision: 1549230

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

Modified:
    creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/header/FilteringSequenceFactory.java

Modified: creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/header/FilteringSequenceFactory.java
URL: http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/header/FilteringSequenceFactory.java?rev=1549230&r1=1549229&r2=1549230&view=diff
==============================================================================
--- creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/header/FilteringSequenceFactory.java (original)
+++ creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/header/FilteringSequenceFactory.java Sun Dec  8 20:56:16 2013
@@ -68,7 +68,7 @@ class FilteringSequenceFactory {
 	 * @throws IOException
 	 *             Signals that an I/O exception has occurred.
 	 */
-	public CharSequence filter(Reader reader) throws IOException {
+	public CharSequence filter(final Reader reader) throws IOException {
 		buffer.clear();
 		boolean eof = false;
 		while (!eof) {