derive doc categories from single annotated function name

This commit is contained in:
Jonathan Shook 2021-11-11 18:38:38 -06:00
parent e25ea736c1
commit 0533214df3

View File

@ -47,6 +47,7 @@ public class FDocFuncs implements Iterable<FDocFunc> {
if (cdocs.size()!=1) { if (cdocs.size()!=1) {
logger.warn("There were " + cdocs.size() + " class docs found for types named " + getFunctionName()); logger.warn("There were " + cdocs.size() + " class docs found for types named " + getFunctionName());
functionsByPackage.keySet().forEach(k -> logger.warn(" package: " + k));
} }
return String.join("\n\n",cdocs); return String.join("\n\n",cdocs);