From d98e247665daf7d886fce001ccf169adf4178e39 Mon Sep 17 00:00:00 2001 From: Frank Rehwinkel Date: Wed, 3 May 2017 14:36:55 -0400 Subject: [PATCH] Remove objj_class.sub_classes property From the first day this class was added to the repo, the sub_classes property, which is initialized with an empty array, has gone unused. Removing it. A little less code. A little subsequent processing and memory used. --- Objective-J/Runtime.js | 1 - 1 file changed, 1 deletion(-) diff --git a/Objective-J/Runtime.js b/Objective-J/Runtime.js index 2229a6e82..ebe0756c0 100644 --- a/Objective-J/Runtime.js +++ b/Objective-J/Runtime.js @@ -64,7 +64,6 @@ GLOBAL(objj_class) = function(displayName) this.version = 0; this.super_class = NULL; - this.sub_classes = []; this.name = NULL; this.info = 0;