Apply some simple reviews

This commit is contained in:
Dan Balasescu
2023-05-11 14:25:12 +09:00
parent c179cc5d08
commit 8268bc71cf
2 changed files with 1 additions and 4 deletions

View File

@@ -112,9 +112,6 @@ namespace osu.Framework.SourceGeneration
public static bool IsIDependencyInjectionCandidateInterface(ITypeSymbol? type)
=> type?.Name == "IDependencyInjectionCandidate";
public static bool IsISourceGeneratorInputCandidateInterface(ITypeSymbol? type)
=> type?.Name == "ISourceGeneratorInputCandidate";
public static string GetFullyQualifiedTypeName(INamedTypeSymbol type)
=> type.ToDisplayString(SymbolDisplayFormat.CSharpErrorMessageFormat);

View File

@@ -14,7 +14,7 @@ namespace osu.Framework.Graphics
public partial class Drawable
{
/// <summary>
/// Nested class which is used for caching <see cref="HandleNonPositionalInput"/>, <see cref="HandlePositionalInput"/> values obtained via reflection.
/// Nested class which is used for caching <see cref="HandleNonPositionalInput"/>, <see cref="HandlePositionalInput"/> values.
/// </summary>
private static class HandleInputCache
{