Skip to content

Instantly share code, notes, and snippets.

@abarth
Created July 9, 2014 07:39
Show Gist options
  • Save abarth/45599b0c94eb6e268d55 to your computer and use it in GitHub Desktop.
Save abarth/45599b0c94eb6e268d55 to your computer and use it in GitHub Desktop.
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