| Index: sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.cpp
|
| diff --git a/sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.cpp b/sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.cpp
|
| index db9a4d43fb4d815f58c7e9039057cd7e95ebac34..3bcbfa9df32bb175cce404d4d87a2865e25fb955 100644
|
| --- a/sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.cpp
|
| +++ b/sky/engine/core/dom/custom/CustomElementMicrotaskQueueBase.cpp
|
| @@ -22,16 +22,4 @@ void CustomElementMicrotaskQueueBase::trace(Visitor* visitor)
|
| visitor->trace(m_queue);
|
| }
|
|
|
| -#if !defined(NDEBUG)
|
| -void CustomElementMicrotaskQueueBase::show(unsigned indent)
|
| -{
|
| - for (unsigned q = 0; q < m_queue.size(); ++q) {
|
| - if (m_queue[q])
|
| - m_queue[q]->show(indent);
|
| - else
|
| - fprintf(stderr, "%*snull\n", indent, "");
|
| - }
|
| -}
|
| -#endif
|
| -
|
| } // namespace blink
|
|
|