File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
src/main/java/tech/fastj/systems/collections Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 11package tech .fastj .systems .collections ;
22
3+ import tech .fastj .graphics .game .GameObject ;
34import tech .fastj .systems .execution .FastJScheduledThreadPool ;
45
56import java .util .ArrayList ;
4142 * </ul>
4243 *
4344 * @param <E> The type of the list's contained elements.
45+ * @author Andrew Dey
4446 * @see List
4547 * @see ArrayList
4648 * @see ScheduledExecutorService
49+ * @since 1.6.0
50+ * @deprecated ManagedList will no longer be supported for future usage, as its original use for
51+ * {@link GameObject game object behavior storage} has caused far too many issues with hanging tasks.
4752 */
53+ @ Deprecated (forRemoval = true )
4854public class ManagedList <E > implements List <E > {
4955
5056 private final ArrayList <E > list ;
You can’t perform that action at this time.
0 commit comments