Skip to content

Commit

Permalink
mark AssemblyMaps as Serializable now that it is part of BlockData (s…
Browse files Browse the repository at this point in the history
…ince BlockData gets passed to Spark workers)
  • Loading branch information
trautmane committed Sep 10, 2023
1 parent 5eb67cd commit 261ad85
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package org.janelia.render.client.newsolver.assembly;

import java.io.Serializable;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
Expand All @@ -11,7 +12,7 @@
import org.janelia.alignment.spec.TransformSpec;
import org.janelia.render.client.solver.SerializableValuePair;

public class AssemblyMaps< M >
public class AssemblyMaps< M > implements Serializable
{
final public HashMap<String, M> idToModel = new HashMap<>();
final public HashMap<String, TileSpec> idToTileSpec = new HashMap<>();
Expand Down

0 comments on commit 261ad85

Please sign in to comment.