Skip to content

Commit 5f5a486

Browse files
committed
Removed @ApiStatus.NonExtendable from Currency methods
1 parent 8a0585f commit 5f5a486

File tree

1 file changed

+0
-3
lines changed
  • src/main/java/net/thenextlvl/service/api/economy/currency

1 file changed

+0
-3
lines changed

src/main/java/net/thenextlvl/service/api/economy/currency/Currency.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ public interface Currency {
2929
* @param audience the audience whose locale is used to determine the singular display name
3030
* @return the singular display name as a {@code Component} for the audience's locale
3131
*/
32-
@ApiStatus.NonExtendable
3332
default Component getDisplayNameSingular(Audience audience) {
3433
return getDisplayNameSingular(audience.getOrDefault(Identity.LOCALE, Locale.US));
3534
}
@@ -51,7 +50,6 @@ default Component getDisplayNameSingular(Audience audience) {
5150
* @param audience the audience whose locale is used to determine the plural display name
5251
* @return the plural display name as a {@code Component} for the audience's locale
5352
*/
54-
@ApiStatus.NonExtendable
5553
default Component getDisplayNamePlural(Audience audience) {
5654
return getDisplayNamePlural(audience.getOrDefault(Identity.LOCALE, Locale.US));
5755
}
@@ -79,7 +77,6 @@ default Component getDisplayNamePlural(Audience audience) {
7977
* @return the formatted amount as a component
8078
* @see #format(Number, Locale)
8179
*/
82-
@ApiStatus.NonExtendable
8380
default Component format(Number amount, Audience audience) {
8481
return format(amount, audience.getOrDefault(Identity.LOCALE, Locale.US));
8582
}

0 commit comments

Comments
 (0)