maven coding style

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@321161 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2005-10-14 17:44:46 +00:00
parent 5b9d2cf645
commit 0d93c160bc
1 changed files with 4 additions and 2 deletions

View File

@ -60,8 +60,10 @@ import org.apache.maven.plugin.MojoExecutionException;
* @goal sayhi
* @description Says "Hi" to the user
*/
public class GreetingMojo extends AbstractMojo {
public void execute() throws MojoExecutionException {
public class GreetingMojo extends AbstractMojo
{
public void execute() throws MojoExecutionException
{
getLog().info("Hello, world.");
}
}