Skip to content

Commit

Permalink
fix: undo incorrect refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
jenspots committed Apr 26, 2024
1 parent 5a47787 commit 2ae9d27
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/pipeline.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.

# Definition of a runner.Processor.
# Definition of a Processor.
[]
a sh:NodeShape;
sh:targetClass jvm:runner.Processor;
sh:targetClass jvm:Processor;
sh:property [
sh:path jvm:file;
sh:minCount 1;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/queries/processors.sparql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SELECT

WHERE {
?processor
a jvm:runner.Processor ;
a jvm:Processor ;
jvm:file ?file ;
jvm:language ?language .
}
Empty file.
2 changes: 1 addition & 1 deletion src/test/resources/processors/range.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<> owl:imports <../pipeline.ttl>.

jvm:Range a jvm:runner.Processor;
jvm:Range a jvm:Processor;
jvm:file <../sources/Range.java>;
jvm:language "Java".

Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/processors/reporter.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<> owl:imports <../pipeline.ttl>.

jvm:Reporter a jvm:runner.Processor;
jvm:Reporter a jvm:Processor;
jvm:file <../sources/Reporter.java>;
jvm:language "Java".

Expand Down

0 comments on commit 2ae9d27

Please sign in to comment.