Update IntCache.java

This commit is contained in:
FatSaw
2022-07-31 08:14:28 +03:00
parent d34531aa84
commit 7b47710c42

View File

@@ -8,8 +8,6 @@ import java.util.List;
// NeonPaper end
public class IntCache {
private static int a = 256;
// NeonPaper start - Refactored IntCache to be thread local instead of static
private static final ThreadLocal<IntCache> caches = new ThreadLocal<IntCache>() {
@Override