remove useless methods

This commit is contained in:
wusheng 2016-11-23 21:34:25 +08:00
parent c2237575ce
commit fec2c40bab
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ public class SpanStorageClient {
}
while (!((CallStreamObserver<RequestSpan>) requestSpanStreamObserver).isReady()) {
try {
Thread.currentThread().sleep(1);
Thread.sleep(1);
} catch (InterruptedException e) {
throw new ConsumeSpanDataFailedException(e);
}
@ -71,7 +71,7 @@ public class SpanStorageClient {
}
while (!((CallStreamObserver<AckSpan>) ackSpanStreamObserver).isReady()) {
try {
Thread.currentThread().sleep(1);
Thread.sleep(1);
} catch (InterruptedException e) {
throw new ConsumeSpanDataFailedException(e);
}