diff --git a/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultFileLocatorHelper.java b/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultFileLocatorHelper.java
index 25d1b6195a7..7f44815f319 100644
--- a/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultFileLocatorHelper.java
+++ b/jetty-osgi/jetty-osgi-boot/src/main/java/org/eclipse/jetty/osgi/boot/utils/internal/DefaultFileLocatorHelper.java
@@ -355,10 +355,10 @@ public class DefaultFileLocatorHelper implements BundleFileLocatorHelper
* Get a URL to the content of the bundle entry that uses the file:
* protocol. The content of the bundle entry may be downloaded or extracted
* to the local file system in order to create a file: URL.
+ *
*
* @return a URL to the content of the bundle entry that uses the file:
* protocol
- *
* @throws Exception if unable to get the file url
*/
@Override
diff --git a/jetty-server/src/main/java/org/eclipse/jetty/server/CustomRequestLog.java b/jetty-server/src/main/java/org/eclipse/jetty/server/CustomRequestLog.java
index f2a04e69941..4e340187896 100644
--- a/jetty-server/src/main/java/org/eclipse/jetty/server/CustomRequestLog.java
+++ b/jetty-server/src/main/java/org/eclipse/jetty/server/CustomRequestLog.java
@@ -83,7 +83,7 @@ import static java.lang.invoke.MethodType.methodType;
*
*
*
- * %{format}a |
+ * %{format}a |
*
* Address or Hostname. Valid formats are {server, client, local, remote}
* Optional format parameter which will be server by default.
@@ -94,7 +94,7 @@ import static java.lang.invoke.MethodType.methodType;
* |
*
*
- * %{format}p |
+ * %{format}p |
*
* Port. Valid formats are {server, client, local, remote}
* Optional format parameter which will be server by default.
@@ -105,7 +105,7 @@ import static java.lang.invoke.MethodType.methodType;
* |
*
*
- * %{CLF}I |
+ * %{CLF}I |
*
* Size of request in bytes, excluding HTTP headers.
* Optional parameter with value of "CLF" to use CLF format, i.e. a '-' rather than a 0 when no bytes are sent.
@@ -113,7 +113,7 @@ import static java.lang.invoke.MethodType.methodType;
* |
*
*
- * %{CLF}O |
+ * %{CLF}O |
*
* Size of response in bytes, excluding HTTP headers.
* Optional parameter with value of "CLF" to use CLF format, i.e. a '-' rather than a 0 when no bytes are sent.
@@ -121,7 +121,7 @@ import static java.lang.invoke.MethodType.methodType;
* |
*
*
- * %{CLF}S |
+ * %{CLF}S |
*
* Bytes transferred (received and sent). This is the combination of %I and %O.
* Optional parameter with value of "CLF" to use CLF format, i.e. a '-' rather than a 0 when no bytes are sent.
@@ -129,7 +129,7 @@ import static java.lang.invoke.MethodType.methodType;
* |
*
*
- * %{VARNAME}C |
+ * %{VARNAME}C |
*
* The contents of cookie VARNAME in the request sent to the server. Only version 0 cookies are fully supported.
* Optional VARNAME parameter, without this parameter %C will log all cookies from the request.
@@ -137,69 +137,69 @@ import static java.lang.invoke.MethodType.methodType;
* |
*
*
- * %D |
+ * %D |
* The time taken to serve the request, in microseconds. |
*
*
*
- * %{VARNAME}e |
+ * %{VARNAME}e |
* The contents of the environment variable VARNAME. |
*
*
*
- * %f |
+ * %f |
* Filename. |
*
*
*
- * %H |
+ * %H |
* The name and version of the request protocol, such as "HTTP/1.1". |
*
*
*
- * %{VARNAME}i |
+ * %{VARNAME}i |
* The contents of VARNAME: header line(s) in the request sent to the server. |
*
*
*
- * %k |
+ * %k |
* Number of keepalive requests handled on this connection.
* Interesting if KeepAlive is being used, so that, for example, a '1' means the first keepalive request
* after the initial one, '2' the second, etc...; otherwise this is always 0 (indicating the initial request). |
*
*
*
- * %m |
+ * %m |
* The request method. |
*
*
*
- * %{VARNAME}o |
+ * %{VARNAME}o |
* The contents of VARNAME: header line(s) in the response. |
*
*
*
- * %q |
+ * %q |
* The query string (prepended with a ? if a query string exists, otherwise an empty string). |
*
*
*
- * %r |
+ * %r |
* First line of request. |
*
*
*
- * %R |
+ * %R |
* The handler generating the response (if any). |
*
*
*
- * %s |
+ * %s |
* Response status. |
*
*
*
- * %{format|timeZone|locale}t |
+ * %{format|timeZone|locale}t |
*
* The time that the request was received.
* Optional parameter in one of the following formats {format}, {format|timeZone} or {format|timeZone|locale}.
@@ -219,19 +219,19 @@ import static java.lang.invoke.MethodType.methodType;
* |
*
*
- * %T |
+ * %T |
* The time taken to serve the request, in seconds. |
*
*
*
- * %{UNIT}T |
+ * %{UNIT}T |
* The time taken to serve the request, in a time unit given by UNIT.
* Valid units are ms for milliseconds, us for microseconds, and s for seconds.
* Using s gives the same result as %T without any format; using us gives the same result as %D. |
*
*
*
- * %{d}u |
+ * %{d}u |
*
* Remote user if the request was authenticated with servlet authentication. May be bogus if return status (%s) is 401 (unauthorized).
* Optional parameter d, with this parameter deferred authentication will also be checked,
@@ -240,12 +240,12 @@ import static java.lang.invoke.MethodType.methodType;
* |
*
*
- * %U |
+ * %U |
* The URL path requested, not including any query string. |
*
*
*
- * %X |
+ * %X |
*
* Connection status when response is completed:
*
@@ -256,7 +256,7 @@ import static java.lang.invoke.MethodType.methodType;
* |
*
*
- * %{VARNAME}^ti |
+ * %{VARNAME}^ti |
* The contents of VARNAME: trailer line(s) in the request sent to the server. |
*
*