Created
July 9, 2014 07:39
-
-
Save abarth/45599b0c94eb6e268d55 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/web/tableau/pile.dart b/web/tableau/pile.dart | |
index 7d8fdff..c0a3adb 100644 | |
--- a/web/tableau/pile.dart | |
+++ b/web/tableau/pile.dart | |
@@ -5,10 +5,10 @@ | |
part of freecell.tableau; | |
abstract class Pile { | |
- ObservableList<Card> cards; | |
+ List<Card> cards; | |
Pile() { | |
- cards = new ObservableList<Card>(); | |
+ cards = new List<Card>(); | |
} | |
bool get isEmpty => cards.isEmpty; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment