Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 31 Mar 2021 02:14:55
Message-Id: 1617156660.d85267e74fcd44ef42ca0cb90c7a1a46d772a8da.sam@gentoo
1 commit: d85267e74fcd44ef42ca0cb90c7a1a46d772a8da
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 31 02:11:00 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 31 02:11:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d85267e7
7
8 java-utils-2.eclass: fix @RETURN syntax
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 eclass/java-utils-2.eclass | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass
16 index 861d8b24a71..a5c06a689ce 100644
17 --- a/eclass/java-utils-2.eclass
18 +++ b/eclass/java-utils-2.eclass
19 @@ -2591,14 +2591,14 @@ java-pkg_needs-vm() {
20
21 # @FUNCTION: java-pkg_get-current-vm
22 # @INTERNAL
23 -# @RETURN - The current VM being used
24 +# @RETURN: The current VM being used
25 java-pkg_get-current-vm() {
26 java-config -f
27 }
28
29 # @FUNCTION: java-pkg_get-vm-vendor
30 # @INTERNAL
31 -# @RETURN - The vendor of the current VM
32 +# @RETURN: The vendor of the current VM
33 java-pkg_get-vm-vendor() {
34 debug-print-function ${FUNCNAME} $*
35
36 @@ -2609,7 +2609,7 @@ java-pkg_get-vm-vendor() {
37
38 # @FUNCTION: java-pkg_get-vm-version
39 # @INTERNAL
40 -# @RETURN - The version of the current VM
41 +# @RETURN: The version of the current VM
42 java-pkg_get-vm-version() {
43 debug-print-function ${FUNCNAME} $*
44
45 @@ -2618,12 +2618,12 @@ java-pkg_get-vm-version() {
46
47 # @FUNCTION: java-pkg_build-vm-from-handle
48 # @INTERNAL
49 +# @RETURN: VM handle of an available JDK
50 # @DESCRIPTION:
51 # Selects a build vm from a list of vm handles. First checks for the system-vm
52 # beeing usable, then steps through the listed handles till a suitable vm is
53 # found.
54 #
55 -# @RETURN - VM handle of an available JDK
56 java-pkg_build-vm-from-handle() {
57 debug-print-function ${FUNCNAME} "$*"