From e47f3155ea03010289978bbd08fdff0d562f4cf3 Mon Sep 17 00:00:00 2001 From: John DeRegnaucourt Date: Sat, 6 Apr 2024 00:29:52 -0400 Subject: [PATCH] Fixed javadoc --- src/main/java/com/cedarsoftware/util/Converter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/cedarsoftware/util/Converter.java b/src/main/java/com/cedarsoftware/util/Converter.java index cc06ac6b..8292c352 100644 --- a/src/main/java/com/cedarsoftware/util/Converter.java +++ b/src/main/java/com/cedarsoftware/util/Converter.java @@ -87,7 +87,7 @@ public static boolean isConversionSupportedFor(Class source, Class target) } /** - * @return Map> which contains all supported conversions. The key of the Map is a source class, + * @return {@code Map>} which contains all supported conversions. The key of the Map is a source class, * and the Set contains all the target types (classes) that the source can be converted to. */ public static Map, Set>> allSupportedConversions() {