remove whitespace

This commit is contained in:
Mike McCandless 2016-05-14 18:50:10 -04:00
parent ded8b400b0
commit 8d7db7fd7a
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ public class IndexingMemoryController extends AbstractComponent implements Index
/** Shard calls this on each indexing/delete op */
public void bytesWritten(int bytes) {
long totalBytes = bytesWrittenSinceCheck.addAndGet(bytes);
assert totalBytes >= 0 ;
assert totalBytes >= 0;
while (totalBytes > indexingBuffer.bytes()/30) {
if (runLock.tryLock()) {