From d5a9ceb3122e9999f483dd70a339787dbf516253 Mon Sep 17 00:00:00 2001 From: Georgios Andrianakis Date: Wed, 21 Jun 2023 16:58:05 +0300 Subject: [PATCH] Apply tiny fixes to javadoc of HttpCommonTags --- .../io/quarkus/micrometer/runtime/binder/HttpCommonTags.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/extensions/micrometer/runtime/src/main/java/io/quarkus/micrometer/runtime/binder/HttpCommonTags.java b/extensions/micrometer/runtime/src/main/java/io/quarkus/micrometer/runtime/binder/HttpCommonTags.java index a6aa48f167cf0..656736a6d345c 100644 --- a/extensions/micrometer/runtime/src/main/java/io/quarkus/micrometer/runtime/binder/HttpCommonTags.java +++ b/extensions/micrometer/runtime/src/main/java/io/quarkus/micrometer/runtime/binder/HttpCommonTags.java @@ -18,7 +18,7 @@ public class HttpCommonTags { * Creates an {@code method} {@code Tag} derived from the given {@code HTTP method}. * * @param method the HTTP method - * @return the outcome tag + * @return the method tag */ public static Tag method(String method) { return method == null ? METHOD_UNKNOWN : Tag.of("method", method); @@ -50,8 +50,7 @@ public static Tag outcome(int statusCode) { * for 404 responses, {@code root} for requests with no path info, and {@code UNKNOWN} * for all other requests. * - * - * @param pathInfo + * @param pathInfo request path * @param code status code of the response * @return the uri tag derived from the request */