Removing do-nothing value-side validation

This commit is contained in:
Tom MacWright 2011-01-14 12:15:58 -05:00
parent 4db08c47ec
commit d46c50d351

View File

@ -15,9 +15,6 @@ tree.Value.prototype = {
}
},
toCSS: function (env, selector) {
if (selector) {
tree.Reference.validValue(selector, this.value);
}
return this.value.map(function (e) {
return e.toCSS(env);
}).join(env.compress ? ',' : ', ');