From 78a00b165844652cda80c5eec39ee5b5be5f64cf Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 16 Mar 2015 17:14:10 +0000 Subject: [PATCH] =?UTF-8?q?Polish=20EmbeddedServletContainer=E2=80=99s=20j?= =?UTF-8?q?avadoc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes gh-2647 --- .../boot/context/embedded/EmbeddedServletContainer.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot/src/main/java/org/springframework/boot/context/embedded/EmbeddedServletContainer.java b/spring-boot/src/main/java/org/springframework/boot/context/embedded/EmbeddedServletContainer.java index bfeba2e8fb..347a940b24 100644 --- a/spring-boot/src/main/java/org/springframework/boot/context/embedded/EmbeddedServletContainer.java +++ b/spring-boot/src/main/java/org/springframework/boot/context/embedded/EmbeddedServletContainer.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2014 the original author or authors. + * Copyright 2012-2015 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -33,14 +33,14 @@ public interface EmbeddedServletContainer { /** * Starts the embedded servlet container. Calling this method on an already started * container has no effect. - * @throws EmbeddedServletContainerException of the container cannot be stopped + * @throws EmbeddedServletContainerException if the container cannot be started */ void start() throws EmbeddedServletContainerException; /** * Stops the embedded servlet container. Calling this method on an already stopped * container has no effect. - * @throws EmbeddedServletContainerException of the container cannot be stopped + * @throws EmbeddedServletContainerException if the container cannot be stopped */ void stop() throws EmbeddedServletContainerException;