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

unclosed character literal

fixes "unclosed character literal" error some people may get on compile.
This commit is contained in:
freethemice 2019-05-28 17:19:15 -05:00 committed by GitHub
parent 7107c04ecd
commit 5ffb1a5170
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);
}