Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compiler warnings for unused symbols in GA_SettingsInspector.cs and GA_SignUp.cs #44

Open
Grimeh opened this issue Dec 18, 2024 · 0 comments

Comments

@Grimeh
Copy link

Grimeh commented Dec 18, 2024

There are several unused symbols in GA_SettingsInspector.cs and GA_SignUp.cs that generate compiler warnings.

btnSize in GA_SettingsInspector:1491:

const int btnSize = 12;

And _signUpInProgress, _createGameInProgress, _googlePlayPublicKey, _selectedPlatform, _selectedOrganization, _selectedStudio in GA_SignUp:38-43:

private bool _signUpInProgress = false;
private bool _createGameInProgress = false;
private string _googlePlayPublicKey = "";
private RuntimePlatform _selectedPlatform;
private int _selectedOrganization;
private int _selectedStudio;

The last 3 don't generate "assigned but not used" warnings, but they're all unused and seem related so it makes sense to remove them all imo.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant