changeset 102:92ff9630897a

Remove explicit calls to lazyinit that were no longer necessary.
author Mike Pavone <pavone@retrodev.com>
date Thu, 09 Aug 2012 19:11:42 -0700
parents 5d15b91e738a
children 182c311a9fed
files types.js
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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;