Skip to content

Commit

Permalink
Removed empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
mdesalvo committed Jul 9, 2022
1 parent fed6cac commit 3fca7a1
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions RDFSharp/Query/Mirella/RDFOperationPrinter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -267,11 +267,9 @@ private static string PrintBodyMembers(List<RDFNamespace> operationPrefixes, RDF
#region PATTERNGROUPS
if (queryMember is RDFPatternGroup)
{

//Current pattern group is set as UNION with the next one
if (((RDFPatternGroup)queryMember).JoinAsUnion)
{

//Current pattern group IS NOT the last of the query
//(so UNION keyword must be appended at last)
if (!queryMember.Equals(lastQueryMbr))
Expand Down Expand Up @@ -300,7 +298,6 @@ private static string PrintBodyMembers(List<RDFNamespace> operationPrefixes, RDF
else
sb.Append(RDFQueryPrinter.PrintPatternGroup((RDFPatternGroup)queryMember, 0, false, operationPrefixes));
}

}

//Current pattern group is set as INTERSECT with the next one
Expand All @@ -316,7 +313,6 @@ private static string PrintBodyMembers(List<RDFNamespace> operationPrefixes, RDF
else
sb.Append(RDFQueryPrinter.PrintPatternGroup((RDFPatternGroup)queryMember, 0, false, operationPrefixes));
}

}
#endregion

Expand Down

0 comments on commit 3fca7a1

Please sign in to comment.