From 32cadeacdb31bb96636854b39daef6802f6fedc2 Mon Sep 17 00:00:00 2001 From: Esteban Date: Sun, 26 Jun 2016 17:52:12 -0300 Subject: [PATCH] Remove comment about PooledClass destructors being optional (#6560) They are no longer optional since #4720 (cherry picked from commit 752e1595fc630b3f632d1535c87d1e6b70c1009c) --- src/shared/utils/PooledClass.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/utils/PooledClass.js b/src/shared/utils/PooledClass.js index 5000ca726f..5ffc255ae9 100644 --- a/src/shared/utils/PooledClass.js +++ b/src/shared/utils/PooledClass.js @@ -94,7 +94,7 @@ var DEFAULT_POOLER = oneArgumentPooler; * Augments `CopyConstructor` to be a poolable class, augmenting only the class * itself (statically) not adding any prototypical fields. Any CopyConstructor * you give this may have a `poolSize` property, and will look for a - * prototypical `destructor` on instances (optional). + * prototypical `destructor` on instances. * * @param {Function} CopyConstructor Constructor that can be used to reset. * @param {Function} pooler Customizable pooler.