Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-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 3E58896A3 for ; Sun, 20 Nov 2011 20:27:58 +0000 (UTC) Received: (qmail 10289 invoked by uid 500); 20 Nov 2011 20:27:57 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 10226 invoked by uid 500); 20 Nov 2011 20:27:57 -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 10217 invoked by uid 99); 20 Nov 2011 20:27:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Nov 2011 20:27:57 +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, 20 Nov 2011 20:27:55 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id ABBBB23889DA for ; Sun, 20 Nov 2011 20:27:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1204234 - /commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/HandlerConfiguration.java Date: Sun, 20 Nov 2011 20:27:34 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111120202734.ABBBB23889DA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: simonetripodi Date: Sun Nov 20 20:27:34 2011 New Revision: 1204234 URL: http://svn.apache.org/viewvc?rev=1204234&view=rev Log: minor format Modified: commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/HandlerConfiguration.java Modified: commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/HandlerConfiguration.java URL: http://svn.apache.org/viewvc/commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/HandlerConfiguration.java?rev=1204234&r1=1204233&r2=1204234&view=diff ============================================================================== --- commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/HandlerConfiguration.java (original) +++ commons/sandbox/meiyo/trunk/src/main/java/org/apache/commons/meiyo/classpath/HandlerConfiguration.java Sun Nov 20 20:27:34 2011 @@ -128,8 +128,9 @@ public abstract class HandlerConfigurati Retention retention = annotationType.getAnnotation( Retention.class ); if ( retention == null || RetentionPolicy.RUNTIME != retention.value() ) { - throw new IllegalArgumentException( "Annotation @" + annotationType.getName() - + " is missing RUNTIME retention" ); + throw new IllegalArgumentException( "Annotation @" + + annotationType.getName() + + " is missing RUNTIME retention" ); } }