File tree 3 files changed +3
-6
lines changed
main/java/eu/iamgio/pokedex
test/java/eu/iamgio/pokedex
3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -71,8 +71,6 @@ public class Item {
71
71
*/
72
72
private List <ItemHold > heldByPokemon ;
73
73
74
- //TODO babyTriggerFor
75
-
76
74
/**
77
75
* A list of game indices relevent to this item by generation
78
76
*/
Original file line number Diff line number Diff line change @@ -23,10 +23,9 @@ public class Machine {
23
23
private int id ;
24
24
25
25
/**
26
- * TODO make Item
27
- * The TM or HM item that corresponds to this machine
26
+ * The TM or HM itemName that corresponds to this machine
28
27
*/
29
- private String item ;
28
+ private String itemName ;
30
29
31
30
/**
32
31
* The move that is taught by this machine
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ void testPikachuSpecies() {
160
160
void testMegaPunchMachine () {
161
161
Machine machine = Machine .fromId (1 );
162
162
assertEquals (1 , machine .getId ());
163
- assertEquals ("tm01" , machine .getItem ());
163
+ assertEquals ("tm01" , machine .getItemName ());
164
164
assertEquals ("mega-punch" , machine .getMoveName ());
165
165
assertEquals (VersionGroup .RED_BLUE , machine .getVersionGroup ());
166
166
}
You can’t perform that action at this time.
0 commit comments