Return-Path: Delivered-To: apmail-ofbiz-commits-archive@www.apache.org Received: (qmail 93805 invoked from network); 3 Mar 2010 22:10:40 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 3 Mar 2010 22:10:40 -0000 Received: (qmail 17838 invoked by uid 500); 3 Mar 2010 22:10:32 -0000 Delivered-To: apmail-ofbiz-commits-archive@ofbiz.apache.org Received: (qmail 17712 invoked by uid 500); 3 Mar 2010 22:10:32 -0000 Mailing-List: contact commits-help@ofbiz.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ofbiz.apache.org Delivered-To: mailing list commits@ofbiz.apache.org Received: (qmail 17705 invoked by uid 99); 3 Mar 2010 22:10:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Mar 2010 22:10:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Wed, 03 Mar 2010 22:10:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CB00523889B6; Wed, 3 Mar 2010 22:10:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r918723 - /ofbiz/trunk/framework/base/src/org/ofbiz/base/util/string/FlexibleStringExpander.java Date: Wed, 03 Mar 2010 22:10:11 -0000 To: commits@ofbiz.apache.org From: doogie@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100303221011.CB00523889B6@eris.apache.org> Author: doogie Date: Wed Mar 3 22:10:11 2010 New Revision: 918723 URL: http://svn.apache.org/viewvc?rev=918723&view=rev Log: Remove javadoc from protected methods. Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/string/FlexibleStringExpander.java Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/string/FlexibleStringExpander.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/string/FlexibleStringExpander.java?rev=918723&r1=918722&r2=918723&view=diff ============================================================================== --- ofbiz/trunk/framework/base/src/org/ofbiz/base/util/string/FlexibleStringExpander.java (original) +++ ofbiz/trunk/framework/base/src/org/ofbiz/base/util/string/FlexibleStringExpander.java Wed Mar 3 22:10:11 2010 @@ -239,12 +239,6 @@ } } - /** Parses an expression and returns an array of FlexibleStringExpander - * instances. - * @param expression The expression to be parsed - * @return An array of FlexibleStringExpander - * instances - */ protected static FlexibleStringExpander[] getStrElems(char[] chars, int offset, int length) { String expression = new String(chars, 0, length + offset); int start = expression.indexOf(openBracket, offset); @@ -321,13 +315,6 @@ this.chars = chars; } - /** Appends this object's expression result to buffer. - * - * @param buffer The buffer to append to - * @param context The evaluation context - * @param timeZone The time zone to be used for localization - * @param locale The locale to be used for localization - */ protected abstract Object get(Map context, TimeZone timeZone, Locale locale); private static Locale getLocale(Locale locale, Map context) {