diff options
author | Sam James <sam@gentoo.org> | 2021-03-31 03:11:00 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-31 03:11:00 +0100 |
commit | d85267e74fcd44ef42ca0cb90c7a1a46d772a8da (patch) | |
tree | 8fbce0d545f168513f484c9bee3ed813d27ef54a /eclass/java-utils-2.eclass | |
parent | php-pear-r2.eclass: fix @DESCRIPTION syntax (diff) | |
download | gentoo-d85267e74fcd44ef42ca0cb90c7a1a46d772a8da.tar.gz gentoo-d85267e74fcd44ef42ca0cb90c7a1a46d772a8da.tar.bz2 gentoo-d85267e74fcd44ef42ca0cb90c7a1a46d772a8da.zip |
java-utils-2.eclass: fix @RETURN syntax
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/java-utils-2.eclass')
-rw-r--r-- | eclass/java-utils-2.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass index 861d8b24a71b..a5c06a689ced 100644 --- a/eclass/java-utils-2.eclass +++ b/eclass/java-utils-2.eclass @@ -2591,14 +2591,14 @@ java-pkg_needs-vm() { # @FUNCTION: java-pkg_get-current-vm # @INTERNAL -# @RETURN - The current VM being used +# @RETURN: The current VM being used java-pkg_get-current-vm() { java-config -f } # @FUNCTION: java-pkg_get-vm-vendor # @INTERNAL -# @RETURN - The vendor of the current VM +# @RETURN: The vendor of the current VM java-pkg_get-vm-vendor() { debug-print-function ${FUNCNAME} $* @@ -2609,7 +2609,7 @@ java-pkg_get-vm-vendor() { # @FUNCTION: java-pkg_get-vm-version # @INTERNAL -# @RETURN - The version of the current VM +# @RETURN: The version of the current VM java-pkg_get-vm-version() { debug-print-function ${FUNCNAME} $* @@ -2618,12 +2618,12 @@ java-pkg_get-vm-version() { # @FUNCTION: java-pkg_build-vm-from-handle # @INTERNAL +# @RETURN: VM handle of an available JDK # @DESCRIPTION: # Selects a build vm from a list of vm handles. First checks for the system-vm # beeing usable, then steps through the listed handles till a suitable vm is # found. # -# @RETURN - VM handle of an available JDK java-pkg_build-vm-from-handle() { debug-print-function ${FUNCNAME} "$*" |