remove obsolete EmbeddedServletContainer.NONE
This commit is contained in:
		
							parent
							
								
									4fb6e7ec42
								
							
						
					
					
						commit
						e77b5e8b94
					
				|  | @ -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. | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue