Release 2.5.1

This commit is contained in:
Alexander Brandes 2023-01-23 12:37:45 +01:00
parent 5e8bc5c2ad
commit 09d405935a
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ ext {
}
}
version = String.format("%s-%s", rootVersion, buildNumber)
version = String.format("%s", rootVersion)
if (!project.hasProperty("gitCommitHash")) {
apply(plugin = "org.ajoberstar.grgit")

View File

@ -3,7 +3,7 @@ package com.fastasyncworldedit.core.util;
/**
* @deprecated Unused, will be removed in the future. Use String concatenation instead.
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "2.5.1")
public class JoinedCharSequence implements CharSequence {
private char join;