Skip to content

Commit

Permalink
Make ModelSerializer public
Browse files Browse the repository at this point in the history
This change allows other classes to write & read spots into "raw" format.
Being able to access this class is useful when implementing code
that serializes a Mastodon project into as custom file format. This change
is helpful for implementing a optimized file format in mastodon-git.
  • Loading branch information
maarzt authored and tinevez committed Oct 9, 2024
1 parent 1273662 commit 7a16bb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import org.mastodon.graph.ref.AbstractVertexPool;
import org.mastodon.pool.PoolObjectAttributeSerializer;

class ModelSerializer implements GraphSerializer< Spot, Link >
public class ModelSerializer implements GraphSerializer< Spot, Link >
{
private ModelSerializer()
{}
Expand Down

0 comments on commit 7a16bb2

Please sign in to comment.