Skip to content

Commit

Permalink
Addressed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
MooVC committed Jan 5, 2025
1 parent bf14528 commit 2dcd446
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/Valuify/Model/Subject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ internal sealed class Subject
/// <value>A value indicating whether or not the subject declares an inequality operator.</value>
public bool HasInequalityOperator { get; set; }


/// <summary>Gets or sets a value indicating whether or not the subject implements <see cref="IEquatable{T}"/>.</summary>
/// <value>A value indicating whether or not the subject implements <see cref="IEquatable{T}"/>.</value>
public bool IsEquatable { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ internal static partial class INamedTypeSymbolExtensions
/// <summary>Determines whether or not the <paramref name="class"/> declares an override for method denoted by <paramref name="name"/>.</summary>
/// <param name="class">The <paramref name="class"/> to be checked.</param>
/// <param name="name">The name of the method to locate.</param>
/// <param name="predicate">Allows for the specification of an optional parameter check on the override method.</param>
/// <param name="return">The return type for the method denoted by <paramref name="name"/>.</param>
/// <param name="predicate">Allows for the specification of an optional parameter check on the override method.</param>
/// <returns>True if the <paramref name="class"/> overrides the method denoted by <paramref name="name"/>, otherwise False.</returns>
/// <remarks>When no <paramref name="predicate"/> is specified, it is assumed that the method accepts no parameters.</remarks>
public static bool CanOverride(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
namespace Valuify.Semantics;

using System.Collections.Immutable;
using System.Reflection.Metadata;
using Microsoft.CodeAnalysis;

/// <summary>
Expand All @@ -12,8 +10,8 @@ internal static partial class INamedTypeSymbolExtensions
/// <summary>Determines whether or not the <paramref name="class"/> declares an override for method denoted by <paramref name="name"/>.</summary>
/// <param name="class">The <paramref name="class"/> to be checked.</param>
/// <param name="name">The name of the method to locate.</param>
/// <param name="predicate">Allows for the specification of an optional parameter check on the override method.</param>
/// <param name="return">The return type for the method denoted by <paramref name="name"/>.</param>
/// <param name="predicate">Allows for the specification of an optional parameter check on the override method.</param>
/// <returns>True if the <paramref name="class"/> overrides the method denoted by <paramref name="name"/>, otherwise False.</returns>
/// <remarks>When no <paramref name="predicate"/> is specified, it is assumed that the method accepts no parameters.</remarks>
public static bool HasOverride(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace Valuify.Semantics;

using System.Collections.Immutable;
using Microsoft.CodeAnalysis;

/// <summary>
Expand All @@ -13,8 +12,8 @@ internal static partial class INamedTypeSymbolExtensions
/// </summary>
/// <param name="class">The <paramref name="class"/> to be checked.</param>
/// <param name="name">The name of the method to locate.</param>
/// <param name="predicate">Allows for the specification of an optional parameter check on the override method.</param>
/// <param name="return">The return type for the method denoted by <paramref name="name"/>.</param>
/// <param name="predicate">Allows for the specification of an optional parameter check on the override method.</param>
/// <returns>True if the <paramref name="class"/> inherits a sealed override to the method denoted by <paramref name="name"/>, otherwise False.</returns>
/// <remarks>When no <paramref name="predicate"/> is specified, it is assumed that the method accepts no parameters.</remarks>
public static bool InheritsSealed(
Expand Down

0 comments on commit 2dcd446

Please sign in to comment.