Fix overwrite lowering method access level

This commit is contained in:
embeddedt 2024-05-10 11:49:49 -04:00
parent 4d251e61ca
commit a66a1dab9d
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -17,7 +17,7 @@ public class BlockableEventLoopMixin {
* @reason yielding the thread is pretty pointless if we're about to park anyway
*/
@Overwrite
protected void waitForTasks() {
public void waitForTasks() {
LockSupport.parkNanos("waiting for tasks", MFIX$TICK_WAIT_TIME);
}
}