From 85c4c70b7d86b5cc12384edd00e1de3acaea74f7 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Mon, 30 May 2011 20:10:52 -0400 Subject: [PATCH] Removed unneeded argument --- lib/class_builder.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/class_builder.js b/lib/class_builder.js index 07db8ea..af703d2 100644 --- a/lib/class_builder.js +++ b/lib/class_builder.js @@ -683,11 +683,9 @@ function attachPropInit( prototype, properties, members, ctor, cid ) * * @param {function()} class * - * @param {{public: Object, protected: Object, private: Object}} static_members - * * @return {undefined} */ -function initStaticVisibilityObj( ctor, static_members ) +function initStaticVisibilityObj( ctor ) { // the object will simply be another layer in the prototype chain to // prevent protected/private members from being mixed in with the public