Chromium Code Reviews| Index: samples/dartcombat/grids.dart |
| diff --git a/samples/dartcombat/grids.dart b/samples/dartcombat/grids.dart |
| index b9f1768eed5579104387171aa6a49e45ae330e73..bf482a3afc19d787b65df84fa1ba60d8293849f3 100644 |
| --- a/samples/dartcombat/grids.dart |
| +++ b/samples/dartcombat/grids.dart |
| @@ -12,7 +12,7 @@ class Boat { |
| Boat(this.startX, this.startY, this.horizontal, this.length) {} |
| - bool get sunk() => length == hitCount; |
| + bool get sunk => length == hitCount; |
| } |
| /** Represents a grid configuration. */ |