mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-25 10:59:03 +00:00
remove obsolete EmbeddedServletContainer.NONE
This commit is contained in:
-22
@@ -29,28 +29,6 @@ package org.springframework.boot.context.embedded;
|
||||
*/
|
||||
public interface EmbeddedServletContainer {
|
||||
|
||||
/**
|
||||
* An empty {@link EmbeddedServletContainer} that does nothing.
|
||||
*/
|
||||
public static final EmbeddedServletContainer NONE = new EmbeddedServletContainer() {
|
||||
|
||||
@Override
|
||||
public void start() throws EmbeddedServletContainerException {
|
||||
// Do nothing
|
||||
};
|
||||
|
||||
@Override
|
||||
public void stop() throws EmbeddedServletContainerException {
|
||||
// Do nothing
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getPort() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* Starts the embedded servlet container. Calling this method on an already started
|
||||
* container has no effect.
|
||||
|
||||
Reference in New Issue
Block a user