mirror of
https://github.com/Minestom/Minestom.git
synced 2025-01-04 23:47:59 +01:00
Use a for-each loop, and prevent iterator allocation when empty
This commit is contained in:
parent
051fbcb34b
commit
0c0b387345
@ -133,15 +133,18 @@ public abstract class ThreadProvider {
|
||||
if (!ChunkUtils.isLoaded(chunk))
|
||||
return;
|
||||
chunk.tick(time);
|
||||
chunkEntry.entities.forEach(entity -> {
|
||||
final boolean hasQueue = lock.hasQueuedThreads();
|
||||
if (hasQueue) {
|
||||
lock.unlock();
|
||||
// #acquire callbacks should be called here
|
||||
lock.lock();
|
||||
final var entities = chunkEntry.entities;
|
||||
if (!entities.isEmpty()) {
|
||||
for (Entity entity : entities) {
|
||||
final boolean hasQueue = lock.hasQueuedThreads();
|
||||
if (hasQueue) {
|
||||
lock.unlock();
|
||||
// #acquire callbacks should be called here
|
||||
lock.lock();
|
||||
}
|
||||
entity.tick(time);
|
||||
}
|
||||
entity.tick(time);
|
||||
});
|
||||
}
|
||||
});
|
||||
Acquirable.refreshEntries(Collections.emptySet());
|
||||
lock.unlock();
|
||||
|
Loading…
Reference in New Issue
Block a user