Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id D940D200D28 for ; Mon, 23 Oct 2017 12:26:18 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D7A4B1609E0; Mon, 23 Oct 2017 10:26:18 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4F6CA1609CE for ; Mon, 23 Oct 2017 12:26:18 +0200 (CEST) Received: (qmail 10729 invoked by uid 500); 23 Oct 2017 10:26:17 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 10720 invoked by uid 99); 23 Oct 2017 10:26:17 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Oct 2017 10:26:17 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id A675D3A028D for ; Mon, 23 Oct 2017 10:26:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1812991 - /commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java Date: Mon, 23 Oct 2017 10:26:12 -0000 To: commits@commons.apache.org From: henrib@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20171023102615.A675D3A028D@svn01-us-west.apache.org> archived-at: Mon, 23 Oct 2017 10:26:19 -0000 Author: henrib Date: Mon Oct 23 10:26:12 2017 New Revision: 1812991 URL: http://svn.apache.org/viewvc?rev=1812991&view=rev Log: JEXL: Javadoc Modified: commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java Modified: commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java?rev=1812991&r1=1812990&r2=1812991&view=diff ============================================================================== --- commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java (original) +++ commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java Mon Oct 23 10:26:12 2017 @@ -68,7 +68,7 @@ final class ClassMap { *

*

* Since the invocation of the associated method is dynamic, there is no need (nor way) to differentiate between - * foo(int,int) and foo(Integer,Integer) since in practise, only the latter form will be used through a call. + * foo(int,int) and foo(Integer,Integer) since in practice only the latter form will be used through a call. * This of course, applies to all 8 primitive types. *

* Uses ConcurrentMap since 3.0, marginally faster than 2.1 under contention.