From commits-return-3399-apmail-ws-commits-archive=ws.apache.org@ws.apache.org Sun Jun 2 18:58:19 2013 Return-Path: X-Original-To: apmail-ws-commits-archive@minotaur.apache.org Delivered-To: apmail-ws-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3989010422 for ; Sun, 2 Jun 2013 18:58:19 +0000 (UTC) Received: (qmail 74618 invoked by uid 500); 2 Jun 2013 18:58:19 -0000 Delivered-To: apmail-ws-commits-archive@ws.apache.org Received: (qmail 74587 invoked by uid 500); 2 Jun 2013 18:58:19 -0000 Mailing-List: contact commits-help@ws.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ws.apache.org Delivered-To: mailing list commits@ws.apache.org Received: (qmail 74580 invoked by uid 99); 2 Jun 2013 18:58:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Jun 2013 18:58:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Jun 2013 18:58:18 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 8F79723889E7; Sun, 2 Jun 2013 18:57:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1488767 - /webservices/axiom/trunk/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMTextImpl.java Date: Sun, 02 Jun 2013 18:57:58 -0000 To: commits@ws.apache.org From: veithen@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130602185758.8F79723889E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: veithen Date: Sun Jun 2 18:57:58 2013 New Revision: 1488767 URL: http://svn.apache.org/r1488767 Log: Removed a constant that is not part of the public API and that is never used. Modified: webservices/axiom/trunk/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMTextImpl.java Modified: webservices/axiom/trunk/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMTextImpl.java URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMTextImpl.java?rev=1488767&r1=1488766&r2=1488767&view=diff ============================================================================== --- webservices/axiom/trunk/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMTextImpl.java (original) +++ webservices/axiom/trunk/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMTextImpl.java Sun Jun 2 18:57:58 2013 @@ -30,7 +30,6 @@ import org.apache.axiom.om.OMNamespace; import org.apache.axiom.om.OMNode; import org.apache.axiom.om.OMOutputFormat; import org.apache.axiom.om.OMText; -import org.apache.axiom.om.impl.common.OMNamespaceImpl; import org.apache.axiom.om.impl.common.serializer.push.OutputException; import org.apache.axiom.om.impl.common.serializer.push.Serializer; import org.apache.axiom.util.UIDGenerator; @@ -41,10 +40,6 @@ import javax.xml.namespace.QName; import java.io.IOException; public class OMTextImpl extends OMLeafNode implements OMText, OMConstants { - /** Field nameSpace used when serializing Binary stuff as MTOM optimized. */ - public static final OMNamespace XOP_NS = new OMNamespaceImpl( - "http://www.w3.org/2004/08/xop/include", "xop"); - private int nodeType; protected String value = null;