Browse Source

remove unused import + javadoc

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277441 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 21 years ago
parent
commit
819cbc3ecf
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/main/org/apache/tools/ant/util/OutputStreamFunneler.java

+ 3
- 3
src/main/org/apache/tools/ant/util/OutputStreamFunneler.java View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2004 The Apache Software Foundation
* Copyright 2004-2005 The Apache Software Foundation
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -19,7 +19,6 @@ package org.apache.tools.ant.util;


import java.io.IOException; import java.io.IOException;
import java.io.OutputStream; import java.io.OutputStream;
import java.io.FilterOutputStream;


/** /**
* Manages a set of <CODE>OutputStream</CODE>s to * Manages a set of <CODE>OutputStream</CODE>s to
@@ -35,7 +34,7 @@ public class OutputStreamFunneler {
*/ */
public static final long DEFAULT_TIMEOUT_MILLIS = 1000; public static final long DEFAULT_TIMEOUT_MILLIS = 1000;


private class Funnel extends OutputStream {
private final class Funnel extends OutputStream {
private boolean closed = false; private boolean closed = false;


private Funnel() { private Funnel() {
@@ -126,6 +125,7 @@ public class OutputStreamFunneler {
* write to this <CODE>OutputStreamFunneler</CODE>'s underlying * write to this <CODE>OutputStreamFunneler</CODE>'s underlying
* <CODE>OutputStream</CODE>. * <CODE>OutputStream</CODE>.
* @return <code>OutputStream</code>. * @return <code>OutputStream</code>.
* @throws IOException if unable to create the funnel.
*/ */
public synchronized OutputStream getFunnelInstance() public synchronized OutputStream getFunnelInstance()
throws IOException { throws IOException {


Loading…
Cancel
Save