PR: MNG-903

fix JDK 5 only method

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@293250 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-10-03 05:16:47 +00:00
parent ae9e9d3fd0
commit f36a813594
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ public class LicenseReport
{
Pattern anchor = Pattern
.compile( "(<\\s*" + tagPattern + "\\s+[^>]*" + attributePattern + "\\s*=\\s*\")([^\"]*)\"([^>]*>)" );
StringBuilder sb = new StringBuilder( html );
StringBuffer sb = new StringBuffer( html );
int indx = 0;
do