typos
[fanfix.git] / src / jexer / TMessageBox.java
index 4c453790fbeff1f941b284e49903fe4bd2e59a2e..6104d9f9783525d640fa74641f0e6d8f9efa6b27 100644 (file)
@@ -131,15 +131,6 @@ public class TMessageBox extends TWindow {
      */
     private Result result = Result.OK;
 
-    /**
-     * Get the result.
-     *
-     * @return the result: OK, CANCEL, YES, or NO.
-     */
-    public final Result getResult() {
-        return result;
-    }
-
     // ------------------------------------------------------------------------
     // Constructors -----------------------------------------------------------
     // ------------------------------------------------------------------------
@@ -418,4 +409,17 @@ public class TMessageBox extends TWindow {
         super.onKeypress(keypress);
     }
 
+    // ------------------------------------------------------------------------
+    // TMessageBox ------------------------------------------------------------
+    // ------------------------------------------------------------------------
+
+    /**
+     * Get the result.
+     *
+     * @return the result: OK, CANCEL, YES, or NO.
+     */
+    public final Result getResult() {
+        return result;
+    }
+
 }