mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-08 20:09:59 +01:00
Fix DuplicateRemovalFunction javadocs
This commit is contained in:
parent
4ef3d50965
commit
beeb4fa169
@ -66,7 +66,7 @@ public interface DuplicateRemovalFunction {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A {@link DuplicateRemovalFunction} that retains only the first duplicate.
|
* A {@link DuplicateRemovalFunction} that retains only the first occurrence.
|
||||||
*/
|
*/
|
||||||
DuplicateRemovalFunction FIRST_ONLY = new DuplicateRemovalFunction() {
|
DuplicateRemovalFunction FIRST_ONLY = new DuplicateRemovalFunction() {
|
||||||
@SuppressWarnings("Java8CollectionRemoveIf")
|
@SuppressWarnings("Java8CollectionRemoveIf")
|
||||||
@ -88,7 +88,7 @@ public interface DuplicateRemovalFunction {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A {@link DuplicateRemovalFunction} that retains only the first duplicate.
|
* A {@link DuplicateRemovalFunction} that retains only the last occurrence.
|
||||||
*/
|
*/
|
||||||
DuplicateRemovalFunction LAST_ONLY = new DuplicateRemovalFunction() {
|
DuplicateRemovalFunction LAST_ONLY = new DuplicateRemovalFunction() {
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user