File tree Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -28,13 +28,6 @@ static zend_object_handlers IntlDateFormatter_handlers;
28
28
* Auxiliary functions needed by objects of 'IntlDateFormatter' class
29
29
*/
30
30
31
- /* {{{ IntlDateFormatter_objects_dtor */
32
- static void IntlDateFormatter_object_dtor (zend_object * object )
33
- {
34
- zend_objects_destroy_object ( object );
35
- }
36
- /* }}} */
37
-
38
31
/* {{{ IntlDateFormatter_objects_free */
39
32
void IntlDateFormatter_object_free ( zend_object * object )
40
33
{
@@ -116,7 +109,6 @@ void dateformat_register_IntlDateFormatter_class( void )
116
109
sizeof IntlDateFormatter_handlers );
117
110
IntlDateFormatter_handlers .offset = XtOffsetOf (IntlDateFormatter_object , zo );
118
111
IntlDateFormatter_handlers .clone_obj = IntlDateFormatter_object_clone ;
119
- IntlDateFormatter_handlers .dtor_obj = IntlDateFormatter_object_dtor ;
120
112
IntlDateFormatter_handlers .free_obj = IntlDateFormatter_object_free ;
121
113
}
122
114
/* }}} */
Original file line number Diff line number Diff line change @@ -352,13 +352,6 @@ static void TimeZone_object_init(TimeZone_object *to)
352
352
}
353
353
/* }}} */
354
354
355
- /* {{{ TimeZone_objects_dtor */
356
- static void TimeZone_objects_dtor (zend_object *object)
357
- {
358
- zend_objects_destroy_object (object);
359
- }
360
- /* }}} */
361
-
362
355
/* {{{ TimeZone_objects_free */
363
356
static void TimeZone_objects_free (zend_object *object)
364
357
{
@@ -406,7 +399,6 @@ U_CFUNC void timezone_register_IntlTimeZone_class(void)
406
399
TimeZone_handlers.clone_obj = TimeZone_clone_obj;
407
400
TimeZone_handlers.compare = TimeZone_compare_objects;
408
401
TimeZone_handlers.get_debug_info = TimeZone_get_debug_info;
409
- TimeZone_handlers.dtor_obj = TimeZone_objects_dtor;
410
402
TimeZone_handlers.free_obj = TimeZone_objects_free;
411
403
412
404
You can’t perform that action at this time.
0 commit comments