src/main/java/com/aliyun/mns/model/serialize/topic/SubscriptionSerializer.java [55:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (node != null) {
            root.appendChild(node);
        }

        node = safeCreateContentElement(doc, FILTER_TAG_TAG, obj.getFilterTag(), null);
        if (node != null) {
            root.appendChild(node);
        }

        String xml = XmlUtil.xmlNodeToString(doc, encoding);
        return new ByteArrayInputStream(xml.getBytes(encoding));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/aliyun/mns/model/serialize/topic/UpdateSubscriptionSerializer.java [43:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (node != null) {
            root.appendChild(node);
        }

        node = safeCreateContentElement(doc, FILTER_TAG_TAG, obj.getFilterTag(), null);
        if (node != null) {
            root.appendChild(node);
        }

        String xml = XmlUtil.xmlNodeToString(doc, encoding);
        return new ByteArrayInputStream(xml.getBytes(encoding));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



