Fix codestyle

This commit is contained in:
Haarolean
2018-05-06 19:42:57 +03:00
parent 8f6319d979
commit 7330b1eead
11 changed files with 49 additions and 26 deletions

View File

@@ -6,11 +6,13 @@ import java.util.concurrent.ExecutionException;
* Copyright 2013 Ryan Michela
*/
public abstract class Waitable<T> implements Runnable {
private enum Status {
WAITING,
RUNNING,
FINISHED,
}
Throwable t = null;
T value = null;
Status status = Status.WAITING;