Skip to content

Commit

Permalink
added in 4.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zml2008 committed Sep 5, 2021
1 parent c3de536 commit 8532327
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/main/java/net/kyori/adventure/audience/Audience.java
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public interface Audience extends Pointered {
* <p>The returned {@code Audience} may be the same, or a completely different one.</p>
*
* @param filter the filter
* @since 4.8.0
* @since 4.9.0
*/
default @NotNull Audience filterAudience(final @NotNull Predicate<? super Audience> filter) {
if (filter.test(this)) {
Expand All @@ -160,7 +160,7 @@ public interface Audience extends Pointered {
* other audiences, then you <b>must</b> override this method and provide each audience to {@code action}.</p>
*
* @param action the action
* @since 4.8.0
* @since 4.9.0
*/
default void forEachAudience(final @NotNull Consumer<? super Audience> action) {
action.accept(this);
Expand Down

0 comments on commit 8532327

Please sign in to comment.