Skip to content

Commit

Permalink
Apply quality suggestions from ReSharper
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco De Salvo committed Feb 17, 2025
1 parent 18e3ea9 commit 7c4b8a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions RDFSharp/Model/RDFTriple.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace RDFSharp.Model
/// <summary>
/// RDFTriple represents a triple in the RDF model.
/// </summary>
public class RDFTriple : IEquatable<RDFTriple>
public sealed class RDFTriple : IEquatable<RDFTriple>
{
#region Properties
/// <summary>
Expand Down Expand Up @@ -158,7 +158,7 @@ public Task<RDFGraph> ReifyTripleAsync()
/// <summary>
/// RDFIndexedTriple represents the internal hashed representation of a triple in the library
/// </summary>
internal class RDFIndexedTriple : IEquatable<RDFIndexedTriple>
internal sealed class RDFIndexedTriple : IEquatable<RDFIndexedTriple>
{
#region Properties
/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions RDFSharp/Store/RDFQuadruple.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace RDFSharp.Store
/// <summary>
/// RDFQuadruple represents a quadruple (context-aware triple) in the RDF store.
/// </summary>
public class RDFQuadruple : IEquatable<RDFQuadruple>
public sealed class RDFQuadruple : IEquatable<RDFQuadruple>
{
#region Properties
/// <summary>
Expand Down Expand Up @@ -178,7 +178,7 @@ public RDFMemoryStore ReifyQuadruple()
/// <summary>
/// RDFIndexedQuadruple represents the internal hashed representation of a quadruple
/// </summary>
internal class RDFIndexedQuadruple : IEquatable<RDFIndexedQuadruple>
internal sealed class RDFIndexedQuadruple : IEquatable<RDFIndexedQuadruple>
{
#region Properties
/// <summary>
Expand Down

0 comments on commit 7c4b8a1

Please sign in to comment.