diff options
Diffstat (limited to 'lib/minify.js')
-rw-r--r-- | lib/minify.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/minify.js b/lib/minify.js index 806c3aeb..a68cbf3a 100644 --- a/lib/minify.js +++ b/lib/minify.js @@ -29,7 +29,6 @@ function set_shorthand(name, options, keys) { function init_cache(cache) { if (!cache) return; - if (!("cname" in cache)) cache.cname = -1; if (!("props" in cache)) { cache.props = new Dictionary(); } else if (!(cache.props instanceof Dictionary)) { @@ -39,7 +38,6 @@ function init_cache(cache) { function to_json(cache) { return { - cname: cache.cname, props: cache.props.toObject() }; } |