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

This commit is contained in:
KeatonTheBot
2025-06-22 22:29:27 -05:00
parent 9955191651
commit a9954c23cc
33 changed files with 166 additions and 156 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ namespace LibKenjinx.Android
throw new NotImplementedException();
}
public bool DisplayErrorAppletDialog(string title, string message, string[] buttonsText)
public bool DisplayErrorAppletDialog(string? title, string? message, string[] buttonsText)
{
Interop.UpdateUiHandler(title ?? "",
message ?? "",
@@ -58,7 +58,7 @@ namespace LibKenjinx.Android
return _isOkPressed;
}
public bool DisplayMessageDialog(string title, string message)
public bool DisplayMessageDialog(string? title, string? message)
{
Interop.UpdateUiHandler(title ?? "",
message ?? "",