Remove unused code
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 8 Dec 2010 01:21:12 +0000 (01:21 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 8 Dec 2010 01:21:12 +0000 (01:21 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1043269 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/ant/BaseRedirectorHelperTask.java

index 807dda9..c093232 100644 (file)
@@ -358,19 +358,4 @@ public abstract class BaseRedirectorHelperTask extends Task {
             handleOutput(output);
         }
     }
-  
-    /**
-     * Handles output with ERR priority to error stream and all other
-     * priorities to output stream, then flushes the stream.
-     *
-     * @param output The output to log. Should not be <code>null</code>.
-     */
-    protected void handleFlush(String output, int priority) {
-        if (priority == Project.MSG_ERR) {
-            handleErrorFlush(output);
-        } else {
-            handleFlush(output);
-        }
-    }
-
 }