Skip to content
Snippets Groups Projects
Commit 4f6c3b68 authored by Guylaine Prat's avatar Guylaine Prat
Browse files

Checkstyle corrections

parent 304a7b36
No related branches found
No related tags found
No related merge requests found
...@@ -86,8 +86,9 @@ public class DumpManager { ...@@ -86,8 +86,9 @@ public class DumpManager {
} }
/** Suspend the dump. /** 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. * correctly deal the resume stage.
* @return a flag to tell if the dump is already suspended (true; false otherwise)
*/ */
public static Boolean suspend() { public static Boolean suspend() {
// Check if the dump is already suspended // Check if the dump is already suspended
...@@ -100,8 +101,9 @@ public class DumpManager { ...@@ -100,8 +101,9 @@ public class DumpManager {
} }
/** Resume the dump, only if it was not already suspended. /** 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) { if (!wasSuspended) {
isSuspended = false; isSuspended = false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment