Skip to content

Commit

Permalink
Merge pull request #248 from simlu/qa
Browse files Browse the repository at this point in the history
Fixed issue with older vsd files
  • Loading branch information
simlu authored Aug 20, 2017
2 parents 7564e54 + e481636 commit b8f2a08
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ public class HackedObjectInputStream extends ObjectInputStream {
MIGRATION_MAP.put("com.vitco.app.engine.data.container.ExtendedVector", com.vitco.app.core.data.container.ExtendedVector.class);
MIGRATION_MAP.put("com.vitco.app.engine.data.container.ExtendedLine", com.vitco.app.core.data.container.ExtendedLine.class);
MIGRATION_MAP.put("com.vitco.app.engine.data.container.DataContainer", com.vitco.app.core.data.container.DataContainer.class);
MIGRATION_MAP.put("com.vitco.core.data.container.VoxelLayer", com.vitco.app.core.data.container.VoxelLayer.class);
MIGRATION_MAP.put("com.vitco.core.data.container.Voxel", com.vitco.app.core.data.container.Voxel.class);
MIGRATION_MAP.put("com.vitco.core.data.container.ExtendedVector", com.vitco.app.core.data.container.ExtendedVector.class);
MIGRATION_MAP.put("com.vitco.core.data.container.ExtendedLine", com.vitco.app.core.data.container.ExtendedLine.class);
MIGRATION_MAP.put("com.vitco.core.data.container.DataContainer", com.vitco.app.core.data.container.DataContainer.class);
}

/**
Expand Down

0 comments on commit b8f2a08

Please sign in to comment.