From d01f306b1e85dfcafe4f7719a593420af2ee09a4 Mon Sep 17 00:00:00 2001 From: felixm456 Date: Mon, 1 Jan 2018 23:23:52 +0100 Subject: [PATCH] Some fixes --- data/abox.ttl | 2 +- src/main/java/hsh/ins_jena/App.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/abox.ttl b/data/abox.ttl index bf9aa64..874d339 100644 --- a/data/abox.ttl +++ b/data/abox.ttl @@ -27,7 +27,7 @@ :successorOfConsole :Switch . :Switch rdf:type :PortableGameConsole . -:Switch :madeBy :Nintendo +:Switch :madeBy :Nintendo . :Switch rev:hasReview :SwitchReviewByJPT . :JPT rdf:type foaf:Person ; diff --git a/src/main/java/hsh/ins_jena/App.java b/src/main/java/hsh/ins_jena/App.java index 8b35eb4..4c00b1f 100644 --- a/src/main/java/hsh/ins_jena/App.java +++ b/src/main/java/hsh/ins_jena/App.java @@ -28,7 +28,7 @@ public class App { private static void readAndHandleFiles(String inputPath) { Model tboxModel = FileManager.get().loadModel("file:" + inputPath + "/" + Generator.T_BOX_FILENAME_XML); - Model aboxModel = FileManager.get().loadModel("file:" + inputPath + "/" + Generator.T_BOX_FILENAME_XML); + Model aboxModel = FileManager.get().loadModel("file:" + inputPath + "/" + Generator.A_BOX_FILENAME_XML); // Combine both models to an RDFS model InfModel rdfsModel = ModelFactory.createRDFSModel(tboxModel, aboxModel);