From 0ab7751ef2af8ea49e34c98461da1a8d081ba5f6 Mon Sep 17 00:00:00 2001 From: Lachlan Roberts Date: Tue, 21 Jan 2020 18:22:22 +1100 Subject: [PATCH] Issue #4383 - fix javadoc build issue Signed-off-by: Lachlan Roberts --- .../org/eclipse/jetty/server/MultiPartFormInputStream.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jetty-server/src/main/java/org/eclipse/jetty/server/MultiPartFormInputStream.java b/jetty-server/src/main/java/org/eclipse/jetty/server/MultiPartFormInputStream.java index d04c7b62a316..492c52a12394 100644 --- a/jetty-server/src/main/java/org/eclipse/jetty/server/MultiPartFormInputStream.java +++ b/jetty-server/src/main/java/org/eclipse/jetty/server/MultiPartFormInputStream.java @@ -56,10 +56,10 @@ *

* Deleting the parts can be done from a different thread if the parts are parsed asynchronously. * Because of this we use the state to fail the parsing and coordinate which thread will delete any remaining parts. - * The deletion of parts is done by the cleanup thread in all cases except the transition from ERROR->DELETED which + * The deletion of parts is done by the cleanup thread in all cases except the transition from ERROR->DELETED which * is done by the parsing thread. *

- *
+ * 
{@code
  *                              deleteParts()
  *     +--------------------------------------------------------------+
  *     |                                                              |
@@ -69,7 +69,7 @@
  *                      |                                             |
  *                      +----------------> ERROR ---------------------+
  *                        deleteParts()             parsing thread
- * 
+ * }
* @see https://tools.ietf.org/html/rfc7578 */ public class MultiPartFormInputStream