misc: chore: Android: Clean up .NET code, resolve warnings

This commit is contained in:
KeatonTheBot 2025-06-21 18:11:23 -05:00
parent 9955191651
commit a9954c23cc
33 changed files with 166 additions and 156 deletions

View file

@ -16,7 +16,7 @@ public readonly struct JGlobalRef : IEquatable<JGlobalRef>
#endregion
#region Override Methods
public override Boolean Equals([NotNullWhen(true)] Object obj) => obj is JGlobalRef other && this.Equals(other);
public override Boolean Equals([NotNullWhen(true)] object? obj) => obj is JGlobalRef other && this.Equals(other);
public override Int32 GetHashCode() => this._value.GetHashCode();
#endregion