Skip to content

Commit

Permalink
fix protoype
Browse files Browse the repository at this point in the history
  • Loading branch information
ra1u committed May 20, 2015
1 parent 748c93e commit ed0c8d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/redisserialise.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ class RedisSerialise {
static final List _ints = new List.generate(20,(i)=>ASCII.encode(i.toString()),growable:false);


static List<List<int>> Serialise(object){
List s = new List();
static List<int> Serialise(object){
List<int> s = new List();
SerialiseConsumable(object,(v){
s.addAll(v);
});
Expand Down

0 comments on commit ed0c8d7

Please sign in to comment.