mirror of
https://github.com/filoghost/HolographicDisplays.git
synced 2024-11-04 18:02:24 +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());
|
||||
}
|
||||
|
||||
|
@ -6,8 +6,8 @@
|
||||
package me.filoghost.holographicdisplays.plugin.tick;
|
||||
|
||||
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.listener.LineClickListener;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.ActivePlaceholderTracker;
|
||||
|
||||
public class TickingTask implements Runnable {
|
||||
@ -48,8 +48,8 @@ public class TickingTask implements Runnable {
|
||||
}
|
||||
}
|
||||
|
||||
// Remove entries which were not used by line trackers
|
||||
placeholderTracker.clearUnusedEntries();
|
||||
// Remove placeholders which were not used by line trackers
|
||||
placeholderTracker.clearInactivePlaceholders();
|
||||
|
||||
lineClickListener.processQueuedClickEvents();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user