Remove unnecessary argument

This commit is contained in:
Dávid Szabó 2016-08-26 01:51:11 +02:00 committed by Julian Descottes
parent c522d48c8f
commit a3fd2f0d89

View file

@ -278,7 +278,7 @@
}
};
ns.PiskelController.prototype.serialize = function (expanded) {
return pskl.utils.Serializer.serializePiskel(this.piskel, expanded);
ns.PiskelController.prototype.serialize = function () {
return pskl.utils.Serializer.serializePiskel(this.piskel);
};
})();