diff --git a/RDFSharp/Query/Mirella/RDFOperationPrinter.cs b/RDFSharp/Query/Mirella/RDFOperationPrinter.cs index 5499d33c..8210fd6b 100644 --- a/RDFSharp/Query/Mirella/RDFOperationPrinter.cs +++ b/RDFSharp/Query/Mirella/RDFOperationPrinter.cs @@ -37,16 +37,12 @@ internal static string PrintInsertDataOperation(RDFInsertDataOperation insertDat if (insertDataOperation != null) { - #region PREFIXES List prefixes = insertDataOperation.GetPrefixes(); sb.Append(PrintPrefixes(prefixes)); - #endregion - #region TEMPLATES sb.AppendLine("INSERT DATA {"); insertDataOperation.InsertTemplates.ForEach(tp => sb.Append(PrintPattern(prefixes, tp))); sb.Append('}'); - #endregion } return sb.ToString(); @@ -131,7 +127,6 @@ internal static string PrintDeleteInsertWhereOperation(RDFDeleteInsertWhereOpera sb.AppendLine("DELETE {"); deleteInsertWhereOperation.DeleteTemplates.ForEach(tp => sb.Append(PrintPattern(prefixes, tp))); sb.AppendLine("}"); - sb.AppendLine("INSERT {"); deleteInsertWhereOperation.InsertTemplates.ForEach(tp => sb.Append(PrintPattern(prefixes, tp))); sb.AppendLine("}");