renamed method to match the output format: html, not apt

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@1395807 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Herve Boutemy 2012-10-08 23:10:18 +00:00
parent 49d8d172d9
commit 9c54c7a660
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ public Collection<Option> getOptions()
} }
} }
public String getOptionsAsApt() public String getOptionsAsHtml()
{ {
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
boolean a = true; boolean a = true;
@ -103,6 +103,6 @@ public void testOptionsAsHtml()
throws IOException throws IOException
{ {
File options = getTestFile( "target/test-classes/options.html" ); File options = getTestFile( "target/test-classes/options.html" );
FileUtils.fileWrite( options, "UTF-8", getOptionsAsApt() ); FileUtils.fileWrite( options, "UTF-8", getOptionsAsHtml() );
} }
} }