From: Zeev Suraski Date: Sun, 8 Dec 2002 14:10:58 +0000 (+0000) Subject: Remove comment X-Git-Tag: RELEASE_1_0b3~113 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f491470a1987013175a4b8fb43819954dc1725f;p=php Remove comment --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index d1a90517d3..1f1896572e 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -1575,9 +1575,6 @@ static zend_bool do_inherit_method_check(zend_function *child, zend_function *pa zend_uint child_flags = child->common.fn_flags; zend_uint parent_flags = parent->common.fn_flags; - /* we do not inherit private methods */ -/* assert(!(parent_flags & ZEND_ACC_PRIVATE)); */ - /* You cannot change from static to non static and vice versa. */ if ((child_flags & ZEND_ACC_STATIC) != (parent_flags & ZEND_ACC_STATIC)) {