Add maxPoolSize to limit array and object pools.

Former-commit-id: 677cdb053c7ef60274d71d9ecf4d6f866ef6a8eb
This commit is contained in:
John-David Dalton
2013-06-03 08:43:04 -07:00
parent 9b214d75df
commit 819f4d2151
2 changed files with 12 additions and 0 deletions

View File

@@ -3231,6 +3231,9 @@
if (isRemoved(source, 'getObject', 'releaseObject')) {
source = removeVar(source, 'objectPool');
}
if (isRemoved(source, 'releaseArray', 'releaseObject')) {
source = removeVar(source, 'maxPoolSize');
}
if (isRemoved(source, 'invert')) {
source = replaceVar(source, 'htmlUnescapes', "{'&amp;':'&','&lt;':'<','&gt;':'>','&quot;':'\"','&#x27;':\"'\"}");
}