Remove import static org.apache.logging.log4j.LogManager.getLogger

This commit is contained in:
dordsor21
2021-09-23 12:34:22 +01:00
parent 6c56fa29aa
commit 07c02b5825
3 changed files with 8 additions and 8 deletions

View File

@ -49,7 +49,6 @@ import java.util.List;
import java.util.UUID;
import static com.google.common.base.Preconditions.checkNotNull;
import static org.apache.logging.log4j.LogManager.getLogger;
/**
* A base class for {@link Extent}s that merely passes extents onto another.
@ -214,7 +213,7 @@ public class AbstractDelegateExtent implements Extent {
Extent next = ((AbstractDelegateExtent) extent).getExtent();
new ExtentTraverser(this).setNext(next);
} else {
getLogger(AbstractDelegateExtent.class).debug("Cannot disable queue");
LOGGER.debug("Cannot disable queue");
}
}