ARTEMIS-3084 Fix on checkstyle

sorry for breaking it in the first place.
I messed up into some gitfu sending an older version by accident.
This commit is contained in:
Clebert Suconic 2021-01-29 10:50:45 -05:00
parent 873c2bcc18
commit 7ce5315d7a
2 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,8 @@ public class AIOSequentialFile extends AbstractSequentialFile {
try {
do {
pendingCallbacks.await();
} while(pendingClose);
}
while(pendingClose);
} catch (InterruptedException e) {
// nothing to be done here, other than log it and forward it
logger.warn(e.getMessage(), e);

View File

@ -26,7 +26,6 @@ import org.apache.activemq.artemis.core.io.SequentialFileFactory;
import org.apache.activemq.artemis.core.io.nio.NIOSequentialFileFactory;
import org.apache.activemq.artemis.core.io.util.FileIOUtil;
import org.apache.activemq.artemis.nativo.jlibaio.LibaioContext;
import org.apache.activemq.artemis.nativo.jlibaio.LibaioFile;
import org.junit.Assert;
import org.junit.Assume;
import org.junit.Rule;