Skip to content

Commit

Permalink
Removing redundant code.
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-brandizi committed Aug 28, 2023
1 parent 22848ab commit a1514a6
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@

import java.util.function.Consumer;

import org.apache.jena.query.QuerySolution;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;

import uk.ac.rothamsted.kg.rdf2pg.pgmaker.support.PGRelationMakeProcessor;
import uk.ac.rothamsted.kg.rdf2pg.pgmaker.support.entities.PGRelation;
import uk.ac.rothamsted.kg.rdf2pg.pgmaker.support.rdf.RdfDataManager;

/**
* <H1>The Relation Loading processor for Neo4j</H1>
Expand All @@ -35,8 +33,8 @@ public CyRelationLoadingProcessor ()
* This takes the relations mapped via {@link CyRelationLoadingHandler#getRelationTypesSparql()} and creates
* sets of {@link QuerySolution}s that are sent to {@link CyRelationLoadingHandler} tasks.
*
* TODO: the parent's implementation is identical, apart from the log messages.
*/
* TODO: remove. The parent's implementation is identical, apart from the log messages.
*
public void process ( RdfDataManager rdfMgr, Object...opts )
{
log.info ( "Starting Cypher Relations Loading" );
Expand All @@ -50,7 +48,7 @@ public void process ( RdfDataManager rdfMgr, Object...opts )
super.process ( relIriProcessor );
log.info ( "Cypher Relations Loading ended" );
}
}*/

/**
* Does nothing but invoking {@link #setBatchJob(Consumer)}. It's here just to accommodate Spring annotations.
Expand Down

0 comments on commit a1514a6

Please sign in to comment.