1
0

Use Checkstyle sortStaticImportsAlphabetically

This commit is contained in:
Gary Gregory
2023-11-19 09:01:36 -05:00
parent 0b9cd8bb83
commit b10322e41e
36 changed files with 97 additions and 95 deletions

View File

@@ -16,6 +16,12 @@
*/
package org.apache.commons.logging.impl;
import static org.slf4j.spi.LocationAwareLogger.DEBUG_INT;
import static org.slf4j.spi.LocationAwareLogger.ERROR_INT;
import static org.slf4j.spi.LocationAwareLogger.INFO_INT;
import static org.slf4j.spi.LocationAwareLogger.TRACE_INT;
import static org.slf4j.spi.LocationAwareLogger.WARN_INT;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
@@ -29,12 +35,6 @@ import org.slf4j.Marker;
import org.slf4j.MarkerFactory;
import org.slf4j.spi.LocationAwareLogger;
import static org.slf4j.spi.LocationAwareLogger.DEBUG_INT;
import static org.slf4j.spi.LocationAwareLogger.ERROR_INT;
import static org.slf4j.spi.LocationAwareLogger.INFO_INT;
import static org.slf4j.spi.LocationAwareLogger.TRACE_INT;
import static org.slf4j.spi.LocationAwareLogger.WARN_INT;
/**
* Logger factory hardcoded to send everything to SLF4J.
*