You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
I just saw that some time my global documentation is not in the correct order in the generated html. For example i have something like this for my global doc:
@ApiGlobal(sections={
@ApiGlobalSection(title="General documentation",paragraphs={"/jsondocfile:/jsondocfile/general-doc.html"}),
@ApiGlobalSection(title="Another section",paragraphs={"/jsondocfile:/jsondocfile/other-section.html"}),// More sections here...})publicclassGlobalDocumentation{}
On the generated html, the order is not always the same order specified in my GlobalDocumentation class.
I believe the source of the problem is in class ApiGlobalDoc line 18. The HashSet used does not guarantee the order of the sections.
The text was updated successfully, but these errors were encountered:
Hi
I just saw that some time my global documentation is not in the correct order in the generated html. For example i have something like this for my global doc:
On the generated html, the order is not always the same order specified in my GlobalDocumentation class.
I believe the source of the problem is in class ApiGlobalDoc line 18. The HashSet used does not guarantee the order of the sections.
The text was updated successfully, but these errors were encountered: