Commit e77b5e8b authored by Ivan Sopov's avatar Ivan Sopov Committed by Dave Syer

remove obsolete EmbeddedServletContainer.NONE

parent 4fb6e7ec
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment