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

Remove redundant access modifiers from interface Economy.java #126

Open
lokka30 opened this issue Sep 29, 2021 · 0 comments
Open

Remove redundant access modifiers from interface Economy.java #126

lokka30 opened this issue Sep 29, 2021 · 0 comments

Comments

@lokka30
Copy link

lokka30 commented Sep 29, 2021

The access modifiers public, etc. before every method in the interface Economy.java is redundant.

This:

@Deprecated
public double getBalance(String playerName);

becomes this:

@Deprecated
double getBalance(String playerName);

Let me know if you want me to submit a PR. Since there are already 2 PRs pending that I am excited about I don't want to cause any conflicts with them - otherwise I would've just submitted one ;)

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