Skip to content

Commit 7e09e40

Browse files
authored
Renamed QuestLogic to correct class (exercism#2032)
1 parent 73f0a3e commit 7e09e40

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
class AnnalynsInfiltration {
22
public static boolean canFastAttack(boolean knightIsAwake) {
3-
throw new UnsupportedOperationException("Please implement the (static) QuestLogic.canFastAttack() method");
3+
throw new UnsupportedOperationException("Please implement the (static) AnnalynsInfiltration.canFastAttack() method");
44
}
55

66
public static boolean canSpy(boolean knightIsAwake, boolean archerIsAwake, boolean prisonerIsAwake) {
7-
throw new UnsupportedOperationException("Please implement the (static) QuestLogic.canSpy() method");
7+
throw new UnsupportedOperationException("Please implement the (static) AnnalynsInfiltration.canSpy() method");
88
}
99

1010
public static boolean canSignalPrisoner(boolean archerIsAwake, boolean prisonerIsAwake) {
11-
throw new UnsupportedOperationException("Please implement the (static) QuestLogic.canSignalPrisoner() method");
11+
throw new UnsupportedOperationException("Please implement the (static) AnnalynsInfiltration.canSignalPrisoner() method");
1212
}
1313

1414
public static boolean canFreePrisoner(boolean knightIsAwake, boolean archerIsAwake, boolean prisonerIsAwake, boolean petDogIsPresent) {
15-
throw new UnsupportedOperationException("Please implement the (static) QuestLogic.canFreePrisoner() method");
15+
throw new UnsupportedOperationException("Please implement the (static) AnnalynsInfiltration.canFreePrisoner() method");
1616
}
1717
}

0 commit comments

Comments
 (0)