removed unused import
git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1178583 13f79535-47bb-0310-9956-ffa450edef68master
parent
f8006b44b7
commit
6daae712b5
|
|
@ -191,7 +191,7 @@ public class PluginReport
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (skip || skipReport)
|
if ( skip || skipReport )
|
||||||
{
|
{
|
||||||
getLog().info( "Maven Plugin Plugin Report generation skipped." );
|
getLog().info( "Maven Plugin Plugin Report generation skipped." );
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,6 @@ import org.codehaus.plexus.util.DirectoryScanner;
|
||||||
import org.codehaus.plexus.util.FileUtils;
|
import org.codehaus.plexus.util.FileUtils;
|
||||||
import org.codehaus.plexus.util.StringUtils;
|
import org.codehaus.plexus.util.StringUtils;
|
||||||
import org.codehaus.plexus.util.xml.XMLWriter;
|
import org.codehaus.plexus.util.xml.XMLWriter;
|
||||||
import org.w3c.tidy.Configuration;
|
|
||||||
import org.w3c.tidy.Tidy;
|
import org.w3c.tidy.Tidy;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -264,8 +263,8 @@ public final class PluginUtils
|
||||||
tidy.setDocType( "loose" );
|
tidy.setDocType( "loose" );
|
||||||
tidy.setXHTML( true );
|
tidy.setXHTML( true );
|
||||||
tidy.setXmlOut( true );
|
tidy.setXmlOut( true );
|
||||||
tidy.setInputEncoding("UTF-8");
|
tidy.setInputEncoding( "UTF-8" );
|
||||||
tidy.setOutputEncoding("UTF-8");
|
tidy.setOutputEncoding( "UTF-8" );
|
||||||
tidy.setMakeClean( true );
|
tidy.setMakeClean( true );
|
||||||
tidy.setNumEntities( true );
|
tidy.setNumEntities( true );
|
||||||
tidy.setQuoteNbsp( false );
|
tidy.setQuoteNbsp( false );
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue