mirror of
https://github.com/hierynomus/sshj.git
synced 2025-12-08 00:00:54 +03:00
Indentation fixes.
This commit is contained in:
@@ -31,7 +31,7 @@ public class IdentificationStringParser {
|
|||||||
private byte[] EXPECTED_START_BYTES = new byte[] {'S', 'S', 'H', '-'};
|
private byte[] EXPECTED_START_BYTES = new byte[] {'S', 'S', 'H', '-'};
|
||||||
|
|
||||||
public IdentificationStringParser(LoggerFactory loggerFactory, Buffer.PlainBuffer buffer) {
|
public IdentificationStringParser(LoggerFactory loggerFactory, Buffer.PlainBuffer buffer) {
|
||||||
this.log = loggerFactory.getLogger(IdentificationStringParser.class);
|
this.log = loggerFactory.getLogger(IdentificationStringParser.class);
|
||||||
this.buffer = buffer;
|
this.buffer = buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ public class Promise<V, T extends Throwable> {
|
|||||||
this.name = name;
|
this.name = name;
|
||||||
this.chainer = chainer;
|
this.chainer = chainer;
|
||||||
this.lock = lock == null ? new ReentrantLock() : lock;
|
this.lock = lock == null ? new ReentrantLock() : lock;
|
||||||
this.log = loggerFactory.getLogger(getClass());
|
this.log = loggerFactory.getLogger(getClass());
|
||||||
this.cond = this.lock.newCondition();
|
this.cond = this.lock.newCondition();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user