From commits-return-3404-apmail-ws-commits-archive=ws.apache.org@ws.apache.org Sun Jun 2 21:02:44 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 B4E6C10646 for ; Sun, 2 Jun 2013 21:02:44 +0000 (UTC) Received: (qmail 6843 invoked by uid 500); 2 Jun 2013 21:02:44 -0000 Delivered-To: apmail-ws-commits-archive@ws.apache.org Received: (qmail 6810 invoked by uid 500); 2 Jun 2013 21:02:44 -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 6803 invoked by uid 99); 2 Jun 2013 21:02:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Jun 2013 21:02:44 +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 21:02:42 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C456923888E3; Sun, 2 Jun 2013 21:02:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1488787 - in /webservices/axiom/trunk/modules: axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/TextNodeImpl.java axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMTextImpl.java Date: Sun, 02 Jun 2013 21:02:21 -0000 To: commits@ws.apache.org From: veithen@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130602210221.C456923888E3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: veithen Date: Sun Jun 2 21:02:21 2013 New Revision: 1488787 URL: http://svn.apache.org/r1488787 Log: Removed useless/irrelevant/redundant Javadoc. Modified: webservices/axiom/trunk/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/TextNodeImpl.java webservices/axiom/trunk/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/OMTextImpl.java Modified: webservices/axiom/trunk/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/TextNodeImpl.java URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/TextNodeImpl.java?rev=1488787&r1=1488786&r2=1488787&view=diff ============================================================================== --- webservices/axiom/trunk/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/TextNodeImpl.java (original) +++ webservices/axiom/trunk/modules/axiom-dom/src/main/java/org/apache/axiom/om/impl/dom/TextNodeImpl.java Sun Jun 2 21:02:21 2013 @@ -393,10 +393,6 @@ public abstract class TextNodeImpl exten return (this.textValue != null) ? textValue : ""; } - /* (non-Javadoc) - * @see org.apache.axiom.om.OMNode#buildAll() - */ - public void buildWithAttachments() { this.build(); if (isOptimized()) { 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=1488787&r1=1488786&r2=1488787&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 21:02:21 2013 @@ -257,15 +257,10 @@ public class OMTextImpl extends OMLeafNo return charArray != null ? new String(charArray) : value; } - - /** Returns the value. */ public QName getTextAsQName() throws OMException { return ((OMElement)parent).resolveQName(getTextFromProperPlace()); } - /* (non-Javadoc) - * @see org.apache.axiom.om.OMText#getNamespace() - */ public OMNamespace getNamespace() { // If the namespace has already been determined, return it // Otherwise calculate the namespace if the text contains a colon and is not detached. @@ -315,12 +310,6 @@ public class OMTextImpl extends OMLeafNo return isBinary; } - - /** - * Gets the datahandler. - * - * @return Returns javax.activation.DataHandler - */ public Object getDataHandler() { if ((value != null || charArray != null) && isBinary) { String text = getTextFromProperPlace(); @@ -359,9 +348,6 @@ public class OMTextImpl extends OMLeafNo } } - /* (non-Javadoc) - * @see org.apache.axiom.om.OMNode#buildAll() - */ public void buildWithAttachments() { if (isOptimized()) { // The call to getDataSource ensures that the MIME part is completely read