Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2015-07-22 17:22:39 +0000
committerJoakim Erdfelt2015-07-22 17:22:39 +0000
commitfa92938243c8c02fe84adc918f8ee477b0db62f5 (patch)
tree5848b0b822691689dd8211b00f74f27150ed7256
parent607239028c0be8ef80dbabdb229eb44b3778d630 (diff)
downloadorg.eclipse.jetty.project-fa92938243c8c02fe84adc918f8ee477b0db62f5.tar.gz
org.eclipse.jetty.project-fa92938243c8c02fe84adc918f8ee477b0db62f5.tar.xz
org.eclipse.jetty.project-fa92938243c8c02fe84adc918f8ee477b0db62f5.zip
Fixing javadoc errors
-rw-r--r--jetty-server/src/test/java/org/eclipse/jetty/server/GracefulStopTest.java6
-rw-r--r--jetty-util/src/main/java/org/eclipse/jetty/util/log/Log.java9
2 files changed, 9 insertions, 6 deletions
diff --git a/jetty-server/src/test/java/org/eclipse/jetty/server/GracefulStopTest.java b/jetty-server/src/test/java/org/eclipse/jetty/server/GracefulStopTest.java
index 17b04e00d7..48783c8c34 100644
--- a/jetty-server/src/test/java/org/eclipse/jetty/server/GracefulStopTest.java
+++ b/jetty-server/src/test/java/org/eclipse/jetty/server/GracefulStopTest.java
@@ -51,7 +51,7 @@ public class GracefulStopTest
/**
* Test of standard graceful timeout mechanism when a block request does
* not complete
- * @throws Exception
+ * @throws Exception on test failure
*/
@Test
public void testGracefulNoWaiter() throws Exception
@@ -98,7 +98,7 @@ public class GracefulStopTest
/**
* Test of standard graceful timeout mechanism when a block request does
* not complete
- * @throws Exception
+ * @throws Exception on test failure
*/
@Test
public void testGracefulTimeout() throws Exception
@@ -155,7 +155,7 @@ public class GracefulStopTest
* Test of standard graceful timeout mechanism when a block request does
* complete. Note that even though the request completes after 100ms, the
* stop always takes 1000ms
- * @throws Exception
+ * @throws Exception on test failure
*/
@Test
public void testGracefulComplete() throws Exception
diff --git a/jetty-util/src/main/java/org/eclipse/jetty/util/log/Log.java b/jetty-util/src/main/java/org/eclipse/jetty/util/log/Log.java
index 16ba4be4f8..70db7539f1 100644
--- a/jetty-util/src/main/java/org/eclipse/jetty/util/log/Log.java
+++ b/jetty-util/src/main/java/org/eclipse/jetty/util/log/Log.java
@@ -210,10 +210,13 @@ public class Log
}
/**
- * Set the root logger.
- * <p>Note that if any classes have statically obtained their logger instance
- * prior to this call, their Logger will not be affected by this call.
+ * Set the root logger.
+ * <p>
+ * Note that if any classes have statically obtained their logger instance prior to this call, their Logger will not
+ * be affected by this call.
+ *
* @param log
+ * the root logger implementation to set
*/
public static void setLog(Logger log)
{

Back to the top