You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
context.runtime.getWarnings().warn("Passing a Node as the first parameter to CDATA.new is deprecated. Please pass a Document instead. This will become an error in a future release of Nokogiri.");
if (rb_obj_is_kind_of(doc, cNokogiriXmlDocument)) {
29
-
xml_doc=noko_xml_document_unwrap(doc);
30
-
} else {
28
+
if (!rb_obj_is_kind_of(rb_document, cNokogiriXmlDocument)) {
31
29
xmlNodePtrdeprecated_node_type_arg;
32
30
// TODO: deprecate allowing Node
33
31
NOKO_WARN_DEPRECATION("Passing a Node as the first parameter to CDATA.new is deprecated. Please pass a Document instead. This will become an error in a future release of Nokogiri.");
0 commit comments