From 0d93c160bc0800928128bf01b4a2b67803ac8997 Mon Sep 17 00:00:00 2001 From: Jason van Zyl Date: Fri, 14 Oct 2005 17:44:46 +0000 Subject: [PATCH] maven coding style git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@321161 13f79535-47bb-0310-9956-ffa450edef68 --- .../apt/guides/plugin/guide-java-plugin-development.apt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/maven-site/src/site/apt/guides/plugin/guide-java-plugin-development.apt b/maven-site/src/site/apt/guides/plugin/guide-java-plugin-development.apt index 39fba27db3..530a974052 100644 --- a/maven-site/src/site/apt/guides/plugin/guide-java-plugin-development.apt +++ b/maven-site/src/site/apt/guides/plugin/guide-java-plugin-development.apt @@ -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."); } }