Fix timeline deserialization

This commit is contained in:
johni0702
2016-03-12 14:39:33 +01:00
parent 9e3484a52f
commit c3773bb11a

View File

@@ -37,7 +37,7 @@ public class TimelineSerialization {
}
public Map<String, Timeline> load() throws IOException {
Map<String, Timeline> timelines = LegacyTimelineConverter.convert(registry, replayFile);
Map<String, Timeline> timelines = new LinkedHashMap<>(LegacyTimelineConverter.convert(registry, replayFile));
Optional<InputStream> optionalIn = replayFile.get(FILE_ENTRY);
if (optionalIn.isPresent()) {