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
1 changed files with 7 additions and 4 deletions

View File

@ -5,12 +5,12 @@
* (C) Copyright 2009-2024, Arnaud Roques
*
* Project Info: https://plantuml.com
*
*
* If you like this project or if you find it useful, you can support us at:
*
*
* https://plantuml.com/patreon (only 1$ per month!)
* https://plantuml.com/paypal
*
*
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
@ -127,8 +127,11 @@ public enum DiagramType {
if (StartUtils.startsWithSymbolAnd("startfiles", s))
return FILES;
if (StartUtils.startsWithSymbolAnd("startchronology", s))
return CHRONOLOGY;
if (StartUtils.startsWithSymbolAnd("startchen", s))
return CHEN_EER;
return CHEN_EER;
return UNKNOWN;
}