Skip to content

Commit

Permalink
removed unnecessary serializers
Browse files Browse the repository at this point in the history
  • Loading branch information
datomo committed Mar 9, 2024
1 parent a657b07 commit 2a77451
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

package org.polypheny.db.catalog.catalogs;

import io.activej.serializer.BinarySerializer;
import io.activej.serializer.annotations.Deserialize;
import java.util.ArrayList;
import java.util.List;
Expand All @@ -40,16 +39,13 @@
import org.polypheny.db.catalog.entity.physical.PhysicalEntity;
import org.polypheny.db.catalog.entity.physical.PhysicalField;
import org.polypheny.db.catalog.entity.physical.PhysicalTable;
import org.polypheny.db.type.PolySerializable;
import org.polypheny.db.util.Pair;

@Getter
@EqualsAndHashCode(callSuper = true)
@Value
public class DocAdapterCatalog extends AdapterCatalog {

public BinarySerializer<DocAdapterCatalog> serializer = PolySerializable.buildSerializer( DocAdapterCatalog.class );


public DocAdapterCatalog( long adapterId ) {
this( adapterId, Map.of(), Map.of(), Map.of(), Map.of() );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

package org.polypheny.db.catalog.catalogs;

import io.activej.serializer.BinarySerializer;
import io.activej.serializer.annotations.Deserialize;
import java.util.ArrayList;
import java.util.List;
Expand All @@ -40,7 +39,6 @@
import org.polypheny.db.catalog.entity.physical.PhysicalField;
import org.polypheny.db.catalog.entity.physical.PhysicalGraph;
import org.polypheny.db.catalog.entity.physical.PhysicalTable;
import org.polypheny.db.type.PolySerializable;
import org.polypheny.db.util.Pair;


Expand All @@ -49,8 +47,6 @@
@Value
public class GraphAdapterCatalog extends AdapterCatalog {

public BinarySerializer<GraphAdapterCatalog> serializer = PolySerializable.buildSerializer( GraphAdapterCatalog.class );


public GraphAdapterCatalog( long adapterId ) {
this( adapterId, Map.of(), Map.of(), Map.of(), Map.of() );
Expand Down

0 comments on commit 2a77451

Please sign in to comment.