Skip to content

Commit

Permalink
CAT-1579 Add the brick to the corresponding brick info
Browse files Browse the repository at this point in the history
  • Loading branch information
Manu91 committed Sep 28, 2015
1 parent 7328206 commit 883059c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ private void initializeBrickInfoMap() {
brickInfo.addBrickFieldToMap("text", BrickField.SPEAK);
brickInfoMap.put("speakBrick", brickInfo);

brickInfo = new BrickInfo(StopAllSoundsBrick.class.getSimpleName());
brickInfo = new BrickInfo(WhenBrick.class.getSimpleName());
brickInfoMap.put("whenBrick", brickInfo);

brickInfo = new BrickInfo(TurnLeftBrick.class.getSimpleName());
Expand All @@ -372,7 +372,7 @@ private void initializeBrickInfoMap() {
brickInfo.addBrickFieldToMap("timeToWaitInSeconds", BrickField.TIME_TO_WAIT_IN_SECONDS);
brickInfoMap.put("waitBrick", brickInfo);

brickInfo = new BrickInfo(WhenBrick.class.getSimpleName());
brickInfo = new BrickInfo(StopAllSoundsBrick.class.getSimpleName());
brickInfoMap.put("stopAllSoundsBrick", brickInfo);

brickInfo = new BrickInfo(WhenStartedBrick.class.getSimpleName());
Expand Down

0 comments on commit 883059c

Please sign in to comment.