Basic API Structure #2

Merged
kske merged 12 commits from f/basics into develop 2021-12-11 21:45:59 +01:00
Showing only changes of commit 93e177cc35 - Show all commits

View File

@ -10,7 +10,7 @@ import java.util.*;
*/ */
public final class UnlimitedChangeManager<C extends Change> implements ChangeManager<C> { public final class UnlimitedChangeManager<C extends Change> implements ChangeManager<C> {
private final List<C> changes = new LinkedList<>(); private final List<C> changes = new ArrayList<>();
private int index = -1; private int index = -1;
private int markedIndex = -1; private int markedIndex = -1;