Reduce size of minimal application

This commit is contained in:
Alexey Andreev 2019-12-03 20:56:53 +03:00
parent 16f4d2571b
commit fed75ef0cf

View File

@ -26,7 +26,7 @@ import org.teavm.runtime.Fiber;
public class TThread extends TObject implements TRunnable {
private static TThread mainThread = new TThread("main");
private static TThread currentThread = mainThread;
private static long nextId = 1;
private static int nextId = 1;
private static int activeCount = 1;
private long id;
private int priority;