diff --git a/src/SQL2Linked/StructuralData.cs b/src/SQL2Linked/StructuralData.cs
index ee37d5d5d89d06edc309534b5fc8ef99335c67a4..a9c9ec01326c59d365c678948bd1f2fcc9093fbf 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
                 )
             );
         }
-
     }
 }