From commits-return-1903-apmail-logging-commits-archive=logging.apache.org@logging.apache.org Fri Jan 11 14:55:13 2013 Return-Path: X-Original-To: apmail-logging-commits-archive@minotaur.apache.org Delivered-To: apmail-logging-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 0CEB2E872 for ; Fri, 11 Jan 2013 14:55:13 +0000 (UTC) Received: (qmail 79915 invoked by uid 500); 11 Jan 2013 14:55:13 -0000 Delivered-To: apmail-logging-commits-archive@logging.apache.org Received: (qmail 79898 invoked by uid 500); 11 Jan 2013 14:55:13 -0000 Mailing-List: contact commits-help@logging.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@logging.apache.org Delivered-To: mailing list commits@logging.apache.org Received: (qmail 79890 invoked by uid 99); 11 Jan 2013 14:55:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Jan 2013 14:55:12 +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; Fri, 11 Jan 2013 14:55:12 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id BEAED23888EA; Fri, 11 Jan 2013 14:54:52 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1432072 - /logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/plugins/ResolverUtil.java Date: Fri, 11 Jan 2013 14:54:52 -0000 To: commits@logging.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130111145452.BEAED23888EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Fri Jan 11 14:54:52 2013 New Revision: 1432072 URL: http://svn.apache.org/viewvc?rev=1432072&view=rev Log: Generics. Modified: logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/plugins/ResolverUtil.java Modified: logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/plugins/ResolverUtil.java URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/plugins/ResolverUtil.java?rev=1432072&r1=1432071&r2=1432072&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/plugins/ResolverUtil.java (original) +++ logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/plugins/ResolverUtil.java Fri Jan 11 14:54:52 2013 @@ -467,13 +467,13 @@ public class ResolverUtil { * that this test will match the parent type itself if it is presented for matching. */ public static class IsA extends ClassTest { - private final Class parent; + private final Class parent; /** * Constructs an IsA test using the supplied Class as the parent class/interface. * @param parentType The parent class to check for. */ - public IsA(final Class parentType) { this.parent = parentType; } + public IsA(final Class parentType) { this.parent = parentType; } /** * Returns true if type is assignable to the parent type supplied in the constructor.