build: Release 6.9.3

This commit is contained in:
Alexander Brandes 2022-07-25 21:10:39 +02:00
parent ae59c7442f
commit dcf98c2298
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
3 changed files with 11 additions and 11 deletions

View File

@ -174,7 +174,7 @@ public final class CaptionLoader {
public @NonNull CaptionMap loadAll(final @NonNull Path directory) throws IOException { public @NonNull CaptionMap loadAll(final @NonNull Path directory) throws IOException {
final Map<Locale, CaptionMap> localeMaps = new HashMap<>(); final Map<Locale, CaptionMap> localeMaps = new HashMap<>();
try (final Stream<Path> files = Files.list(directory)) { try (final Stream<Path> files = Files.list(directory)) {
final List<Path> captionFiles = files.filter(Files::isRegularFile).collect(Collectors.toList()); final List<Path> captionFiles = files.filter(Files::isRegularFile).toList();
for (Path file : captionFiles) { for (Path file : captionFiles) {
try { try {
final CaptionMap localeMap = loadSingle(file); final CaptionMap localeMap = loadSingle(file);
@ -221,7 +221,7 @@ public final class CaptionLoader {
* @throws IOException if the file couldn't be accessed or read successfully. * @throws IOException if the file couldn't be accessed or read successfully.
* @throws IllegalArgumentException if the file name doesn't match the specified format. * @throws IllegalArgumentException if the file name doesn't match the specified format.
* @see #loadSingle(Path) * @see #loadSingle(Path)
* @since TODO * @since 6.9.3
*/ */
public @NonNull CaptionMap loadOrCreateSingle(final @NonNull Path file) throws IOException { public @NonNull CaptionMap loadOrCreateSingle(final @NonNull Path file) throws IOException {
final Locale locale = this.localeExtractor.apply(file); final Locale locale = this.localeExtractor.apply(file);

View File

@ -34,14 +34,14 @@ import org.checkerframework.checker.nullness.qual.NonNull;
* @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed * @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed
* classes * classes
*/ */
@Deprecated(forRemoval = true, since = "TODO") @Deprecated(forRemoval = true, since = "6.9.3")
public class Permissions { public class Permissions {
/** /**
* @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed * @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed
* classes * classes
*/ */
@Deprecated(forRemoval = true, since = "TODO") @Deprecated(forRemoval = true, since = "6.9.3")
public static boolean hasPermission(PlotPlayer<?> player, Permission permission, boolean notify) { public static boolean hasPermission(PlotPlayer<?> player, Permission permission, boolean notify) {
return hasPermission(player, permission.toString(), notify); return hasPermission(player, permission.toString(), notify);
} }
@ -55,7 +55,7 @@ public class Permissions {
* @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed * @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed
* classes * classes
*/ */
@Deprecated(forRemoval = true, since = "TODO") @Deprecated(forRemoval = true, since = "6.9.3")
public static boolean hasPermission(final @NonNull PermissionHolder caller, final @NonNull Permission permission) { public static boolean hasPermission(final @NonNull PermissionHolder caller, final @NonNull Permission permission) {
return caller.hasPermission(permission.toString()); return caller.hasPermission(permission.toString());
} }
@ -70,7 +70,7 @@ public class Permissions {
* @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed * @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed
* classes * classes
*/ */
@Deprecated(forRemoval = true, since = "TODO") @Deprecated(forRemoval = true, since = "6.9.3")
public static boolean hasPermission(final @NonNull PermissionHolder caller, final @NonNull String permission) { public static boolean hasPermission(final @NonNull PermissionHolder caller, final @NonNull String permission) {
return caller.hasPermission(permission); return caller.hasPermission(permission);
} }
@ -87,7 +87,7 @@ public class Permissions {
* @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed * @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed
* classes * classes
*/ */
@Deprecated(forRemoval = true, since = "TODO") @Deprecated(forRemoval = true, since = "6.9.3")
public static boolean hasKeyedPermission( public static boolean hasKeyedPermission(
final @NonNull PermissionHolder caller, final @NonNull String permission, final @NonNull PermissionHolder caller, final @NonNull String permission,
final @NonNull String key final @NonNull String key
@ -105,7 +105,7 @@ public class Permissions {
* @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed * @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed
* classes * classes
*/ */
@Deprecated(forRemoval = true, since = "TODO") @Deprecated(forRemoval = true, since = "6.9.3")
public static boolean hasPermission(PlotPlayer<?> player, String permission, boolean notify) { public static boolean hasPermission(PlotPlayer<?> player, String permission, boolean notify) {
if (!hasPermission(player, permission)) { if (!hasPermission(player, permission)) {
if (notify) { if (notify) {
@ -123,7 +123,7 @@ public class Permissions {
* @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed * @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed
* classes * classes
*/ */
@Deprecated(forRemoval = true, since = "TODO") @Deprecated(forRemoval = true, since = "6.9.3")
public static int hasPermissionRange(PlotPlayer<?> player, Permission Permission, int range) { public static int hasPermissionRange(PlotPlayer<?> player, Permission Permission, int range) {
return hasPermissionRange(player, Permission.toString(), range); return hasPermissionRange(player, Permission.toString(), range);
} }
@ -140,7 +140,7 @@ public class Permissions {
* @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed * @deprecated all logic that may once have been in the class lives elsewhere. We also want to do away with statically-accessed
* classes * classes
*/ */
@Deprecated(forRemoval = true, since = "TODO") @Deprecated(forRemoval = true, since = "6.9.3")
public static int hasPermissionRange(PlotPlayer<?> player, String stub, int range) { public static int hasPermissionRange(PlotPlayer<?> player, String stub, int range) {
return player.hasPermissionRange(stub, range); return player.hasPermissionRange(stub, range);
} }

View File

@ -19,7 +19,7 @@ plugins {
} }
group = "com.plotsquared" group = "com.plotsquared"
version = "6.9.3-SNAPSHOT" version = "6.9.3"
subprojects { subprojects {
group = rootProject.group group = rootProject.group