From 83033cad6501008e64dca6457397f603b38797db Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Thu, 8 Nov 2018 19:45:25 -0800 Subject: [PATCH] GUACAMOLE-220: Use JavaDoc "{@link Map}" to point to Map interface. --- .../guacamole/auth/ldap/ObjectQueryService.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ObjectQueryService.java b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ObjectQueryService.java index 89a43c327..94550a2a5 100644 --- a/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ObjectQueryService.java +++ b/extensions/guacamole-auth-ldap/src/main/java/org/apache/guacamole/auth/ldap/ObjectQueryService.java @@ -43,7 +43,7 @@ import org.slf4j.LoggerFactory; * Guacamole-related objects. Referrals are automatically handled. Convenience * functions are provided for generating the LDAP queries typically required * for retrieving Guacamole objects, as well as for converting the results of a - * query into a Map of Guacamole objects. + * query into a {@link Map} of Guacamole objects. */ public class ObjectQueryService { @@ -277,11 +277,11 @@ public class ObjectQueryService { } /** - * Converts a given list of LDAP entries to a map of Guacamole objects - * stored by their identifiers. + * Converts a given list of LDAP entries to a {@link Map} of Guacamole + * objects stored by their identifiers. * * @param - * The type of object to store within the map. + * The type of object to store within the {@link Map}. * * @param entries * A list of LDAP entries to convert to Guacamole objects. @@ -292,9 +292,9 @@ public class ObjectQueryService { * converted, null should be returned. * * @return - * A new map containing Guacamole object versions of each of the given - * LDAP entries, where each object is stored within the map under its - * corresponding identifier. + * A new {@link Map} containing Guacamole object versions of each of + * the given LDAP entries, where each object is stored within the + * {@link Map} under its corresponding identifier. */ public Map asMap(List entries, Function mapper) {