From f7adc1aa5f569590284bfaba561472a9a5e3094f Mon Sep 17 00:00:00 2001 From: Joakim Erdfelt Date: Wed, 22 Apr 2015 18:37:48 -0700 Subject: 464727 - Update Javadoc for Java 8 DocLint --- .../main/java/org/eclipse/jetty/runner/Runner.java | 30 +++------------------- 1 file changed, 4 insertions(+), 26 deletions(-) (limited to 'jetty-runner') diff --git a/jetty-runner/src/main/java/org/eclipse/jetty/runner/Runner.java b/jetty-runner/src/main/java/org/eclipse/jetty/runner/Runner.java index b018766eee..53bc02fab2 100644 --- a/jetty-runner/src/main/java/org/eclipse/jetty/runner/Runner.java +++ b/jetty-runner/src/main/java/org/eclipse/jetty/runner/Runner.java @@ -56,13 +56,10 @@ import org.eclipse.jetty.util.security.Constraint; import org.eclipse.jetty.webapp.WebAppContext; import org.eclipse.jetty.xml.XmlConfiguration; - - /** * Runner - * + *

* Combine jetty classes into a single executable jar and run webapps based on the args to it. - * */ public class Runner { @@ -96,8 +93,6 @@ public class Runner /** * Classpath - * - * */ public class Classpath { @@ -149,22 +144,15 @@ public class Runner } } - - - - /** - * - */ public Runner() { - } /** * Generate helpful usage message and exit * - * @param error + * @param error the error header */ public void usage(String error) { @@ -204,8 +192,8 @@ public class Runner /** * Configure a jetty instance and deploy the webapps presented as args * - * @param args - * @throws Exception + * @param args the command line arguments + * @throws Exception if unable to configure */ public void configure(String[] args) throws Exception { @@ -494,10 +482,6 @@ public class Runner } - /** - * @param handler - * @param handlers - */ protected void prependHandler (Handler handler, HandlerCollection handlers) { if (handler == null || handlers == null) @@ -513,9 +497,6 @@ public class Runner - /** - * @throws Exception - */ public void run() throws Exception { _server.start(); @@ -546,9 +527,6 @@ public class Runner - /** - * @param args - */ public static void main(String[] args) { Runner runner = new Runner(); -- cgit v1.2.3