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:
parent
873c2bcc18
commit
7ce5315d7a
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue