You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2005/10/14 19:44:49 UTC

svn commit: r321161 - /maven/components/trunk/maven-site/src/site/apt/guides/plugin/guide-java-plugin-development.apt

Author: jvanzyl
Date: Fri Oct 14 10:44:46 2005
New Revision: 321161

URL: http://svn.apache.org/viewcvs?rev=321161&view=rev
Log:
maven coding style

Modified:
    maven/components/trunk/maven-site/src/site/apt/guides/plugin/guide-java-plugin-development.apt

Modified: maven/components/trunk/maven-site/src/site/apt/guides/plugin/guide-java-plugin-development.apt
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-site/src/site/apt/guides/plugin/guide-java-plugin-development.apt?rev=321161&r1=321160&r2=321161&view=diff
==============================================================================
--- maven/components/trunk/maven-site/src/site/apt/guides/plugin/guide-java-plugin-development.apt (original)
+++ maven/components/trunk/maven-site/src/site/apt/guides/plugin/guide-java-plugin-development.apt Fri Oct 14 10:44:46 2005
@@ -60,8 +60,10 @@
  * @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.");
     }
 }