1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-07 10:50:53 +00:00

Correctly detect cheneer diagrams

This commit is contained in:
Benjamin Davies 2024-03-16 17:38:41 +13:00
parent 60de4baff9
commit 8312e8c22f
No known key found for this signature in database
GPG Key ID: 9FFDE0674336C460

View File

@ -127,6 +127,9 @@ public enum DiagramType {
if (StartUtils.startsWithSymbolAnd("startfiles", s)) if (StartUtils.startsWithSymbolAnd("startfiles", s))
return FILES; return FILES;
if (StartUtils.startsWithSymbolAnd("startchen", s))
return CHEN_EER;
return UNKNOWN; return UNKNOWN;
} }
} }