Fixing JDK 1.5 specific usage of JspWriter, in favor of JDK 1.4 usage.

git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@548117 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Joakim Erdfelt 2007-06-17 21:23:08 +00:00
parent 17e3dd1d76
commit ffa63bbba5
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ public class DependencyTreeTag
{
try
{
pageContext.getOut().append( msg );
pageContext.getOut().print( msg );
}
catch ( IOException e )
{