nmaguirre / minesweeper

A Simple MineSweeper Project
6 stars 4 forks source link

MinesweeperGameState.toString() is missing #143

Open guttlein opened 8 years ago

guttlein commented 8 years ago

Solved on f0c7f64f9ed20ede4dec55326d93fa0fff97c1f5

elisaboselli commented 8 years ago

Wrong implementation. You are showing on screen when the method toString() is expected to return a string. You could concatenate what you receive from the conditional ("Game On\n" or "Game Over\n") with the string that is returned from the method board.toString(). Also, you can add some more information like, number of mines that are missing to find.

elisaboselli commented 8 years ago

Ready