remove obsolete EmbeddedServletContainer.NONE

This commit is contained in:
Ivan Sopov 2014-04-27 20:01:58 +04:00 committed by Dave Syer
parent 4fb6e7ec42
commit e77b5e8b94
1 changed files with 0 additions and 22 deletions

View File

@ -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.