From b7ad29cedeec1ca0ef29a1eaa906b4947587b827 Mon Sep 17 00:00:00 2001 From: Antonio Musarra Date: Sat, 14 Dec 2024 23:45:07 +0100 Subject: [PATCH] Reviewed the JavaDoc of the JavaInfo interface. --- .../runtime/src/main/java/io/quarkus/info/JavaInfo.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extensions/info/runtime/src/main/java/io/quarkus/info/JavaInfo.java b/extensions/info/runtime/src/main/java/io/quarkus/info/JavaInfo.java index aeacce219a2b2..35a76cf26c9ad 100644 --- a/extensions/info/runtime/src/main/java/io/quarkus/info/JavaInfo.java +++ b/extensions/info/runtime/src/main/java/io/quarkus/info/JavaInfo.java @@ -9,21 +9,21 @@ public interface JavaInfo { /** - * Return the Java version with which application compiled. + * Return the Java runtime version. * * @return string that represent the Java version */ String version(); /** - * Return the Java vendor with which application compiled. + * Return the Java vendor. * * @return string that represent the Java vendor */ String vendor(); /** - * Return the Java vendor version with which application compiled. + * Return the Java vendor runtime version. * * @return string that represent the Java vendor version */