mirror of
https://github.com/filoghost/HolographicDisplays.git
synced 2025-02-28 01:41:19 +01:00
Rename method
This commit is contained in:
parent
6ac35d3d62
commit
b23abef7ab
@ -53,7 +53,7 @@ public class ActivePlaceholderTracker implements PlaceholderReplaceFunction {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public void clearUnusedEntries() {
|
public void clearInactivePlaceholders() {
|
||||||
activePlaceholders.clearUnusedEntries(tickClock.getCurrentTick());
|
activePlaceholders.clearUnusedEntries(tickClock.getCurrentTick());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
package me.filoghost.holographicdisplays.plugin.tick;
|
package me.filoghost.holographicdisplays.plugin.tick;
|
||||||
|
|
||||||
import me.filoghost.fcommons.logging.Log;
|
import me.filoghost.fcommons.logging.Log;
|
||||||
import me.filoghost.holographicdisplays.plugin.listener.LineClickListener;
|
|
||||||
import me.filoghost.holographicdisplays.plugin.hologram.tracking.LineTrackerManager;
|
import me.filoghost.holographicdisplays.plugin.hologram.tracking.LineTrackerManager;
|
||||||
|
import me.filoghost.holographicdisplays.plugin.listener.LineClickListener;
|
||||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.ActivePlaceholderTracker;
|
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.ActivePlaceholderTracker;
|
||||||
|
|
||||||
public class TickingTask implements Runnable {
|
public class TickingTask implements Runnable {
|
||||||
@ -48,8 +48,8 @@ public class TickingTask implements Runnable {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove entries which were not used by line trackers
|
// Remove placeholders which were not used by line trackers
|
||||||
placeholderTracker.clearUnusedEntries();
|
placeholderTracker.clearInactivePlaceholders();
|
||||||
|
|
||||||
lineClickListener.processQueuedClickEvents();
|
lineClickListener.processQueuedClickEvents();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user