Author: tv
Date: Wed Dec  7 11:16:15 2016
New Revision: 1773048

URL: http://svn.apache.org/viewvc?rev=1773048&view=rev
Log:
Fix JavaDoc

Modified:
    
turbine/fulcrum/trunk/intake/src/test/org/apache/fulcrum/intake/test/AnotherForm.java

Modified: 
turbine/fulcrum/trunk/intake/src/test/org/apache/fulcrum/intake/test/AnotherForm.java
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/src/test/org/apache/fulcrum/intake/test/AnotherForm.java?rev=1773048&r1=1773047&r2=1773048&view=diff
==============================================================================
--- 
turbine/fulcrum/trunk/intake/src/test/org/apache/fulcrum/intake/test/AnotherForm.java
 (original)
+++ 
turbine/fulcrum/trunk/intake/src/test/org/apache/fulcrum/intake/test/AnotherForm.java
 Wed Dec  7 11:16:15 2016
@@ -1,6 +1,5 @@
 package org.apache.fulcrum.intake.test;
 
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
@@ -20,28 +19,31 @@ package org.apache.fulcrum.intake.test;
  * under the License.
  */
 
-
 /**
  * Test form for Intake
  *
  * @author <a href="mailto:[email protected]";>[email protected]</a>
  * @version $Id$
  */
-public class AnotherForm {
+public class AnotherForm
+{
+
+    private String username;
 
-  private String username;
-  /**
-   * @return
-   */
-  public String getUsername() {
-    return username;
-  }
-
-  /**
-   * @param username
-   */
-  public void setUsername(String username) {
-    this.username = username;
-  }
+    /**
+     * @return the user name
+     */
+    public String getUsername()
+    {
+        return username;
+    }
+
+    /**
+     * @param username
+     */
+    public void setUsername(String username)
+    {
+        this.username = username;
+    }
 
 }


Reply via email to