Skip to content

Commit

Permalink
fix: multiple entries
Browse files Browse the repository at this point in the history
  • Loading branch information
Uhutown committed Sep 8, 2024
1 parent 519c694 commit 8b1429a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicReference;
import java.util.function.BiConsumer;
Expand Down Expand Up @@ -261,7 +263,7 @@ private void initalize() {
final AtomicReference<Byte> zs2Value = new AtomicReference<>((byte) -1);
final AtomicInteger delayAtomic = new AtomicInteger(0);
final Map<BlockPosSignalHolder, OtherSignalIdentifier> otherBuilder = new HashMap<>();
final List<ModeIdentifier> trainNumberDisplays = new ArrayList<>();
final Set<ModeIdentifier> trainNumberDisplays = new HashSet<>();
mapOfBlockingPositions.clear();
mapOfResetPositions.clear();
foreachPath((path, node) -> {
Expand Down

0 comments on commit 8b1429a

Please sign in to comment.