Indentation fixes.

This commit is contained in:
David Solin
2016-08-24 06:23:45 -05:00
parent f63a88ec9f
commit cf5830eda5
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ public class Promise<V, T extends Throwable> {
this.name = name;
this.chainer = chainer;
this.lock = lock == null ? new ReentrantLock() : lock;
this.log = loggerFactory.getLogger(getClass());
this.log = loggerFactory.getLogger(getClass());
this.cond = this.lock.newCondition();
}