diff --git a/src/main/org/apache/tools/ant/util/ReaderInputStream.java b/src/main/org/apache/tools/ant/util/ReaderInputStream.java
index 04f3df7b5..bce93ef6c 100755
--- a/src/main/org/apache/tools/ant/util/ReaderInputStream.java
+++ b/src/main/org/apache/tools/ant/util/ReaderInputStream.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2004-2005 The Apache Software Foundation.
+ * Copyright 2004-2006 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@ import java.io.Reader;
/**
* Adapts a Reader as an InputStream.
- * Adapted from StringInputStream.
+ * Adapted from StringInputStream.
*
*/
public class ReaderInputStream extends InputStream {
@@ -37,22 +37,22 @@ public class ReaderInputStream extends InputStream {
private int begin;
/**
- * Construct a ReaderInputStream
- * for the specified Reader.
+ * Construct a ReaderInputStream
+ * for the specified Reader.
*
- * @param reader Reader. Must not be null.
+ * @param reader Reader. Must not be null.
*/
public ReaderInputStream(Reader reader) {
in = reader;
}
/**
- * Construct a ReaderInputStream
- * for the specified Reader,
+ * Construct a ReaderInputStream
+ * for the specified Reader,
* with the specified encoding.
*
- * @param reader non-null Reader.
- * @param encoding non-null String encoding.
+ * @param reader non-null Reader.
+ * @param encoding non-null String encoding.
*/
public ReaderInputStream(Reader reader, String encoding) {
this(reader);
@@ -64,9 +64,9 @@ public class ReaderInputStream extends InputStream {
}
/**
- * Reads from the Reader, returning the same value.
+ * Reads from the Reader, returning the same value.
*
- * @return the value of the next character in the Reader.
+ * @return the value of the next character in the Reader.
*
* @exception IOException if the original Reader fails to be read
*/