1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

Merge pull request #918 from freethemice/patch-3

unclosed character literal
This commit is contained in:
TheBusyBiscuit 2019-05-29 22:25:44 +02:00 committed by GitHub
commit 98cbec3840
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@ public class ItemHash {
StringBuilder builder = new StringBuilder(LENGTH * 2);
for (char c: item.getHash().toCharArray()) {
builder.append('§');
builder.append('\u00a7');
builder.append(c);
}