Browse Source

Remove extra asterisks ending javadoc comments

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@306836 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 20 years ago
parent
commit
fb864a4293
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/taskdefs/StreamPumper.java

+ 2
- 2
src/main/org/apache/tools/ant/taskdefs/StreamPumper.java View File

@@ -115,7 +115,7 @@ public class StreamPumper implements Runnable {
/** /**
* Tells whether the end of the stream has been reached. * Tells whether the end of the stream has been reached.
* @return true is the stream has been exhausted. * @return true is the stream has been exhausted.
**/
*/
public boolean isFinished() { public boolean isFinished() {
return finished; return finished;
} }
@@ -123,7 +123,7 @@ public class StreamPumper implements Runnable {
/** /**
* This method blocks until the stream pumper finishes. * This method blocks until the stream pumper finishes.
* @see #isFinished() * @see #isFinished()
**/
*/
public synchronized void waitFor() public synchronized void waitFor()
throws InterruptedException { throws InterruptedException {
while (!isFinished()) { while (!isFinished()) {


Loading…
Cancel
Save