forked from loafle/openapi-generator-original
Make all loggers non-static (#8799)
* Make all loggers non-static Reduces memory usage on startup by between 2 and 4 MB * Fix compile error in some autogenerated? module
This commit is contained in:
@@ -73,7 +73,7 @@ import com.google.common.io.Files;
|
||||
@Mojo(name = "generate", defaultPhase = LifecyclePhase.GENERATE_SOURCES, threadSafe = true)
|
||||
public class CodeGenMojo extends AbstractMojo {
|
||||
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(CodeGenMojo.class);
|
||||
private final Logger LOGGER = LoggerFactory.getLogger(CodeGenMojo.class);
|
||||
|
||||
/**
|
||||
* The build context is only avail when running from within eclipse.
|
||||
|
||||
Reference in New Issue
Block a user