DescriptionFix isInternalProperty when there are no internal properties
Before my patch isInternalProperty would look like:
....
switch (id) {
return true;
default:
return false;
}
...
since we have no internal properties at the moment.
With this patch it is simply:
{
return false;
}
BUG=396992
Patch Set 1 #
Messages
Total messages: 5 (2 generated)
|