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 D1CDE200B91 for ; Thu, 29 Sep 2016 18:16:51 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D09A7160AE3; Thu, 29 Sep 2016 16:16:51 +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 20155160AC1 for ; Thu, 29 Sep 2016 18:16:50 +0200 (CEST) Received: (qmail 16818 invoked by uid 500); 29 Sep 2016 16:16:50 -0000 Mailing-List: contact commits-help@bval.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@bval.apache.org Delivered-To: mailing list commits@bval.apache.org Received: (qmail 16809 invoked by uid 99); 29 Sep 2016 16:16:50 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Sep 2016 16:16:50 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id E64AB1A0338 for ; Thu, 29 Sep 2016 16:16:49 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -1.999 X-Spam-Level: X-Spam-Status: No, score=-1.999 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id AKxOMLdNyo9g for ; Thu, 29 Sep 2016 16:16:49 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 3B42A5F245 for ; Thu, 29 Sep 2016 16:16:49 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id AA1ECE0147 for ; Thu, 29 Sep 2016 16:16:48 +0000 (UTC) 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 A71893A0224 for ; Thu, 29 Sep 2016 16:16:48 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1762806 - /bval/trunk/bval-jsr/src/main/java/org/apache/bval/jsr/xml/AnnotationProxyBuilder.java Date: Thu, 29 Sep 2016 16:16:48 -0000 To: commits@bval.apache.org From: mbenson@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160929161648.A71893A0224@svn01-us-west.apache.org> archived-at: Thu, 29 Sep 2016 16:16:52 -0000 Author: mbenson Date: Thu Sep 29 16:16:48 2016 New Revision: 1762806 URL: http://svn.apache.org/viewvc?rev=1762806&view=rev Log: class modifier order Modified: bval/trunk/bval-jsr/src/main/java/org/apache/bval/jsr/xml/AnnotationProxyBuilder.java Modified: bval/trunk/bval-jsr/src/main/java/org/apache/bval/jsr/xml/AnnotationProxyBuilder.java URL: http://svn.apache.org/viewvc/bval/trunk/bval-jsr/src/main/java/org/apache/bval/jsr/xml/AnnotationProxyBuilder.java?rev=1762806&r1=1762805&r2=1762806&view=diff ============================================================================== --- bval/trunk/bval-jsr/src/main/java/org/apache/bval/jsr/xml/AnnotationProxyBuilder.java (original) +++ bval/trunk/bval-jsr/src/main/java/org/apache/bval/jsr/xml/AnnotationProxyBuilder.java Thu Sep 29 16:16:48 2016 @@ -42,7 +42,7 @@ import javax.validation.groups.ConvertGr */ // TODO move this guy up to org.apache.bval.jsr or org.apache.bval.jsr.model @Privilizing(@CallTo(Reflection.class)) -final public class AnnotationProxyBuilder { +public final class AnnotationProxyBuilder { private static final ConcurrentMap, Method[]> METHODS_CACHE = new ConcurrentHashMap, Method[]>(); private final Class type;