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;
|
||||
}
|
||||
if (skip || skipReport)
|
||||
if ( skip || skipReport )
|
||||
{
|
||||
getLog().info( "Maven Plugin Plugin Report generation skipped." );
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -55,7 +55,6 @@ import org.codehaus.plexus.util.DirectoryScanner;
|
|||
import org.codehaus.plexus.util.FileUtils;
|
||||
import org.codehaus.plexus.util.StringUtils;
|
||||
import org.codehaus.plexus.util.xml.XMLWriter;
|
||||
import org.w3c.tidy.Configuration;
|
||||
import org.w3c.tidy.Tidy;
|
||||
|
||||
/**
|
||||
|
|
@ -264,8 +263,8 @@ public final class PluginUtils
|
|||
tidy.setDocType( "loose" );
|
||||
tidy.setXHTML( true );
|
||||
tidy.setXmlOut( true );
|
||||
tidy.setInputEncoding("UTF-8");
|
||||
tidy.setOutputEncoding("UTF-8");
|
||||
tidy.setInputEncoding( "UTF-8" );
|
||||
tidy.setOutputEncoding( "UTF-8" );
|
||||
tidy.setMakeClean( true );
|
||||
tidy.setNumEntities( true );
|
||||
tidy.setQuoteNbsp( false );
|
||||
|
|
|
|||
Loading…
Reference in New Issue