MilkBowl / VaultAPI

API Component of Vault
GNU Lesser General Public License v3.0
274 stars 108 forks source link

Remove redundant access modifiers from interface `Economy.java` #126

Open lokka30 opened 2 years ago

lokka30 commented 2 years ago

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 ;)