Merge branch 'MilkBowl:master' into master

This commit is contained in:
Leonardo Di Gianfelice Stornelli 2022-11-22 12:09:50 +01:00 committed by GitHub
commit 458620a15c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 7 deletions

View File

@ -79,11 +79,6 @@ public class EconomyResponse {
* @return Value
*/
public boolean transactionSuccess() {
switch (type) {
case SUCCESS:
return true;
default:
return false;
}
return type == ResponseType.SUCCESS;
}
}
}