Code cleanup.

This commit is contained in:
2023-01-27 17:30:10 +08:00
parent 130896df1f
commit c4b139c7a4
4 changed files with 6 additions and 6 deletions

View File

@@ -194,7 +194,7 @@ namespace Cryville.Crtr {
public virtual EventList GetEventsOfType(string type) {
switch (type) {
case "motions": return new EventList<Chart.Motion>(motions);
default: throw new ArgumentException(string.Format("Unknown event type {0}", type));
default: throw new ArgumentException(string.Format("Unknown event type \"{0}\"", type));
}
}
}