diff --git a/spine-csharp/src/SkeletonJson.cs b/spine-csharp/src/SkeletonJson.cs index e307396dd..fbec2c96e 100644 --- a/spine-csharp/src/SkeletonJson.cs +++ b/spine-csharp/src/SkeletonJson.cs @@ -228,7 +228,7 @@ namespace Spine { Dictionary timelineMap = (Dictionary)entry.Value; foreach (KeyValuePair timelineEntry in timelineMap) { - List> values = (List>)timelineEntry.Value; + List values = (List)timelineEntry.Value; String timelineName = (String)timelineEntry.Key; if (timelineName.Equals(TIMELINE_COLOR)) { ColorTimeline timeline = new ColorTimeline(values.Count);