# HG changeset patch # User Mike Pavone # Date 1344564702 25200 # Node ID 92ff9630897a19280fecbb5f157bfdb4640865c6 # Parent 5d15b91e738aeb0776f04c38541869aaa1a8a620 Remove explicit calls to lazyinit that were no longer necessary. diff -r 5d15b91e738a -r 92ff9630897a types.js --- a/types.js Thu Aug 09 08:09:14 2012 -0700 +++ b/types.js Thu Aug 09 19:11:42 2012 -0700 @@ -57,9 +57,6 @@ if (type.id in this.satisfies_cache) { return this.satisfies_cache[type.id]; } - if (type.lazyinit) { - type.lazyinit(); - } //temporarily set cache entry to true to prevent infinite recursion this.satisfies_cache[type.id] = true; var ret = true; @@ -149,9 +146,6 @@ if (type.id in this.satisfies_cache) { return this.satisfies_cache[type.id]; } - if (type.lazyinit) { - type.lazyinit(); - } //temporarily set cache entry to true to prevent infinite recursion this.satisfies_cache[type.id] = true; var ret = true;