From solr-commits-return-1181-apmail-lucene-solr-commits-archive=lucene.apache.org@lucene.apache.org Fri Feb 16 16:47:59 2007 Return-Path: Delivered-To: apmail-lucene-solr-commits-archive@locus.apache.org Received: (qmail 42599 invoked from network); 16 Feb 2007 16:47:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Feb 2007 16:47:53 -0000 Received: (qmail 15152 invoked by uid 500); 16 Feb 2007 16:48:00 -0000 Delivered-To: apmail-lucene-solr-commits-archive@lucene.apache.org Received: (qmail 15103 invoked by uid 500); 16 Feb 2007 16:48:00 -0000 Mailing-List: contact solr-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-dev@lucene.apache.org Delivered-To: mailing list solr-commits@lucene.apache.org Received: (qmail 15079 invoked by uid 99); 16 Feb 2007 16:48:00 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Feb 2007 08:48:00 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Feb 2007 08:47:51 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 8F10B1A981A; Fri, 16 Feb 2007 08:47:31 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r508487 - /lucene/solr/trunk/src/java/org/apache/solr/util/DOMUtil.java Date: Fri, 16 Feb 2007 16:47:31 -0000 To: solr-commits@lucene.apache.org From: ehatcher@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070216164731.8F10B1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ehatcher Date: Fri Feb 16 08:47:30 2007 New Revision: 508487 URL: http://svn.apache.org/viewvc?view=rev&rev=508487 Log: Correct javadocs with the exception behavior Modified: lucene/solr/trunk/src/java/org/apache/solr/util/DOMUtil.java Modified: lucene/solr/trunk/src/java/org/apache/solr/util/DOMUtil.java URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/java/org/apache/solr/util/DOMUtil.java?view=diff&rev=508487&r1=508486&r2=508487 ============================================================================== --- lucene/solr/trunk/src/java/org/apache/solr/util/DOMUtil.java (original) +++ lucene/solr/trunk/src/java/org/apache/solr/util/DOMUtil.java Fri Feb 16 08:47:30 2007 @@ -238,8 +238,8 @@ /** * Replaces ${system.property[:default value]} references in all attributes - * and text nodes of supplied node. If the system property is not defined, an empty string - * is substituted or the default value if provided. + * and text nodes of supplied node. If the system property is not defined and no + * default value is provided, a runtime exception is thrown. * * @param node DOM node to walk for substitutions */