# File lib/xml/util/xmlcanonicalizer.rb, line 371
        def is_namespace_decl(attribute)
          #return true if (attribute.name() == "xmlns")

          return true if (attribute.prefix().index("xmlns") == 0)
          return false
        end