From 4f6c3b683e6266a6e3dd31acb79704e483483af1 Mon Sep 17 00:00:00 2001
From: Guylaine Prat <guylaine.prat@c-s.fr>
Date: Mon, 18 Feb 2019 12:01:33 +0100
Subject: [PATCH] Checkstyle corrections

---
 src/main/java/org/orekit/rugged/errors/DumpManager.java | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/orekit/rugged/errors/DumpManager.java b/src/main/java/org/orekit/rugged/errors/DumpManager.java
index d275d9df..a838ee5e 100644
--- a/src/main/java/org/orekit/rugged/errors/DumpManager.java
+++ b/src/main/java/org/orekit/rugged/errors/DumpManager.java
@@ -86,8 +86,9 @@ public class DumpManager {
     }
 
     /** Suspend the dump.
-     * In case the dump is already suspended, keep the previous status in order to 
+     * In case the dump is already suspended, keep the previous status in order to
      * correctly deal the resume stage.
+     * @return a flag to tell if the dump is already suspended (true; false otherwise)
      */
     public static Boolean suspend() {
         // Check if the dump is already suspended
@@ -100,8 +101,9 @@ public class DumpManager {
     }
 
     /** Resume the dump, only if it was not already suspended.
+     * @param wasSuspended flag to tell if the dump was already suspended (true; false otherwise)
      */
-    public static void resume(Boolean wasSuspended) {
+    public static void resume(final Boolean wasSuspended) {
         if (!wasSuspended) {
             isSuspended = false;
         }
-- 
GitLab