Some fixes

This commit is contained in:
felixm456 2018-01-01 23:23:52 +01:00 committed by Maschell
parent d740672be3
commit d01f306b1e
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
:successorOfConsole :Switch . :successorOfConsole :Switch .
:Switch rdf:type :PortableGameConsole . :Switch rdf:type :PortableGameConsole .
:Switch :madeBy :Nintendo :Switch :madeBy :Nintendo .
:Switch rev:hasReview :SwitchReviewByJPT . :Switch rev:hasReview :SwitchReviewByJPT .
:JPT rdf:type foaf:Person ; :JPT rdf:type foaf:Person ;

View File

@ -28,7 +28,7 @@ public class App {
private static void readAndHandleFiles(String inputPath) { private static void readAndHandleFiles(String inputPath) {
Model tboxModel = FileManager.get().loadModel("file:" + inputPath + "/" + Generator.T_BOX_FILENAME_XML); 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 // Combine both models to an RDFS model
InfModel rdfsModel = ModelFactory.createRDFSModel(tboxModel, aboxModel); InfModel rdfsModel = ModelFactory.createRDFSModel(tboxModel, aboxModel);