File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
src/main/java/net/thenextlvl/service/api/economy/currency Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments