Removed initialisation to default
Signed-off-by: Emmanuel Bigeon <emmanuel@bigeon.fr>
This commit is contained in:
parent
ae5dc1aeba
commit
4e804325e6
@ -97,7 +97,7 @@ public final class ReadingRunnable implements Runnable {
|
||||
/** The message. */
|
||||
private final String message;
|
||||
/** The started status. */
|
||||
private boolean started = false;
|
||||
private boolean started;
|
||||
|
||||
/** Create the waiting runnable.
|
||||
*
|
||||
|
@ -101,7 +101,7 @@ public final class StreamConsoleInput implements ConsoleInput {
|
||||
private final BufferedReader in;
|
||||
|
||||
/** If the manager is closed. */
|
||||
private boolean closed = false;
|
||||
private boolean closed;
|
||||
|
||||
/** The prompting thread. */
|
||||
private final Thread promptThread;
|
||||
|
@ -85,7 +85,7 @@ public final class StreamConsoleOutput implements ConsoleOutput {
|
||||
/** The print stream. */
|
||||
private final PrintStream out;
|
||||
/** If the manager is closed. */
|
||||
private boolean closed = false;
|
||||
private boolean closed;
|
||||
|
||||
/** This default constructor relies on the system defined standart output and
|
||||
* input stream. */
|
||||
|
Loading…
Reference in New Issue
Block a user