Hi 👋 How do I type annotate a call to this so as to avoid reflection https://github.com/asciidoctor/asciidoctorj/blob/4f72f07f1f50eb5cf73d3cda08261c04a685ce20/asciidoctorj-api/src/main/java/org/asciidoctor/Asciidoctor.java#L44
the best I could come up with was ^"[Ljava.util.Map<String, Object>;" which didnt seem to work
Map is an interface, not a class.
The generics are erased in the jvm so just ^java.util.Map is a sufficient type for the 2nd arg
@retrogradeorbit Also "[L...;" means "array of" so your type hint was sort of saying java.util.Map[]