summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/physical/stragegies/picker/BlindPicker.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/ch/epfl/maze/physical/stragegies/picker/BlindPicker.java')
-rw-r--r--src/ch/epfl/maze/physical/stragegies/picker/BlindPicker.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ch/epfl/maze/physical/stragegies/picker/BlindPicker.java b/src/ch/epfl/maze/physical/stragegies/picker/BlindPicker.java
index 6dcf229..02cb1ef 100644
--- a/src/ch/epfl/maze/physical/stragegies/picker/BlindPicker.java
+++ b/src/ch/epfl/maze/physical/stragegies/picker/BlindPicker.java
@@ -1,6 +1,6 @@
1package ch.epfl.maze.physical.stragegies.picker; 1package ch.epfl.maze.physical.stragegies.picker;
2 2
3import ch.epfl.maze.physical.World; 3import ch.epfl.maze.physical.Daedalus;
4import ch.epfl.maze.util.Direction; 4import ch.epfl.maze.util.Direction;
5 5
6import java.util.Set; 6import java.util.Set;
@@ -13,7 +13,7 @@ import java.util.Set;
13public interface BlindPicker extends ChoicePicker { 13public interface BlindPicker extends ChoicePicker {
14 14
15 @Override 15 @Override
16 default Direction pick(Set<Direction> choices, World world) { 16 default Direction pick(Set<Direction> choices, Daedalus daedalus) {
17 return this.pick(choices); 17 return this.pick(choices);
18 } 18 }
19 19