]> granicus.if.org Git - php/commitdiff
Remove comment
authorZeev Suraski <zeev@php.net>
Sun, 8 Dec 2002 14:10:58 +0000 (14:10 +0000)
committerZeev Suraski <zeev@php.net>
Sun, 8 Dec 2002 14:10:58 +0000 (14:10 +0000)
Zend/zend_compile.c

index d1a90517d3d56370b77552757ea600d2500dcdb1..1f1896572eba4a29af8417fa46d89c7c30102333 100644 (file)
@@ -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)) {