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

Re-add chronology diagram

This was accidentally removed in a merge
This commit is contained in:
Benjamin Davies 2024-03-21 19:34:33 +13:00
parent 234cb3adea
commit e14c8ef0a5
No known key found for this signature in database
GPG Key ID: 9FFDE0674336C460

View File

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