diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-06-17 15:06:13 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-06-17 15:09:07 +0200 |
commit | ba0db95909a232e3f4d694294f077c9460ef00ce (patch) | |
tree | 9dec7b587da17d2beac94d8003a7874d7165e9dc /modules/mono/config.py | |
parent | 7cde0e4ab99e879428af38fd3f005524920c2ed4 (diff) |
DocData: Skip language-specific ClassDoc without methods/constants
Removes the useless `@C#`, `@NativeScript` and `@VisualScript` entries.
Diffstat (limited to 'modules/mono/config.py')
-rw-r--r-- | modules/mono/config.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/mono/config.py b/modules/mono/config.py index 7980a86cb3..cd659057ef 100644 --- a/modules/mono/config.py +++ b/modules/mono/config.py @@ -57,7 +57,6 @@ def configure(env): def get_doc_classes(): return [ - "@C#", "CSharpScript", "GodotSharp", ] |