1
0
Fork 0

Removed unneeded argument

closure/master
Mike Gerwitz 2011-05-30 20:10:52 -04:00
parent 91260471c7
commit 85c4c70b7d
1 changed files with 1 additions and 3 deletions

View File

@ -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