Updated readability of the code.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / textEditorComponent / Page.java
index 0f60618..47c898f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sixth 3D engine. Author: Svjatoslav Agejenko. 
+ * Sixth 3D engine. Author: Svjatoslav Agejenko.
  * This project is released under Creative Commons Zero (CC0) license.
  */
 package eu.svjatoslav.sixth.e3d.gui.textEditorComponent;
@@ -37,8 +37,7 @@ public class Page {
     /**
      * Returns the specified line.
      *
-     * @param row
-     *            The line number.
+     * @param row The line number.
      * @return The line.
      */
     public TextLine getLine(final int row) {
@@ -49,8 +48,7 @@ public class Page {
     /**
      * Returns the length of the specified line.
      *
-     * @param row
-     *            The line number.
+     * @param row The line number.
      * @return The length of the line.
      */
     public int getLineLength(final int row) {
@@ -115,10 +113,8 @@ public class Page {
     /**
      * Removes the specified character from the page.
      *
-     * @param row
-     *            The line number.
-     * @param col
-     *            The character number.
+     * @param row The line number.
+     * @param col The character number.
      */
     public void removeCharacter(final int row, final int col) {
         if (rows.size() <= row)
@@ -129,8 +125,7 @@ public class Page {
     /**
      * Removes the specified line from the page.
      *
-     * @param row
-     *            The line number.
+     * @param row The line number.
      */
     public void removeLine(final int row) {
         if (rows.size() <= row)