From fd412533a98f8c29d33c595f9546a41dc44c4895 Mon Sep 17 00:00:00 2001 From: Hanna Fuehr <fuehr@itc.rwth-aachen.de> Date: Mon, 8 Aug 2022 10:13:36 +0200 Subject: [PATCH] Update: fixes --- src/SQL2Linked/StructuralData.cs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/SQL2Linked/StructuralData.cs b/src/SQL2Linked/StructuralData.cs index ee37d5d..a9c9ec0 100644 --- a/src/SQL2Linked/StructuralData.cs +++ b/src/SQL2Linked/StructuralData.cs @@ -66,7 +66,6 @@ namespace SQL2Linked ) ); } - public void AssertToGraphLiteralNode(IGraph graph, string graphSubject, string graphPredicate, string graphObject, Uri? objectType = null) { graph.Assert( @@ -78,17 +77,6 @@ namespace SQL2Linked ); } - public void AssertToGraphBlankAndUriNode(IGraph graph, string graphSubject, string graphPredicate, string graphObject) - { - graph.Assert( - new Triple( - graph.CreateBlankNode(graphSubject), - graph.CreateUriNode(new Uri(graphPredicate)), - graph.CreateUriNode(new Uri(graphObject)) - ) - ); - } - public void AssertToGraphBlankAndUriNode(IGraph graph, IBlankNode graphSubject, string graphPredicate, string graphObject) { graph.Assert( @@ -99,6 +87,5 @@ namespace SQL2Linked ) ); } - } } -- GitLab