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 11F9CE353 for ; Mon, 7 Jan 2013 16:12:37 +0000 (UTC) Received: (qmail 50910 invoked by uid 500); 7 Jan 2013 16:12:36 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 50850 invoked by uid 500); 7 Jan 2013 16:12:36 -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 50842 invoked by uid 99); 7 Jan 2013 16:12:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Jan 2013 16:12:36 +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; Mon, 07 Jan 2013 16:12:35 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7AA28238896F; Mon, 7 Jan 2013 16:12:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1429871 - /commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/EncoderException.java Date: Mon, 07 Jan 2013 16:12:16 -0000 To: commits@commons.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130107161216.7AA28238896F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Mon Jan 7 16:12:16 2013 New Revision: 1429871 URL: http://svn.apache.org/viewvc?rev=1429871&view=rev Log: Use final where possible. Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/EncoderException.java Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/EncoderException.java URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/EncoderException.java?rev=1429871&r1=1429870&r2=1429871&view=diff ============================================================================== --- commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/EncoderException.java (original) +++ commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/EncoderException.java Mon Jan 7 16:12:16 2013 @@ -50,7 +50,7 @@ public class EncoderException extends Ex * @param message * a useful message relating to the encoder specific error. */ - public EncoderException(String message) { + public EncoderException(final String message) { super(message); } @@ -69,7 +69,7 @@ public class EncoderException extends Ex * value is permitted, and indicates that the cause is nonexistent or unknown. * @since 1.4 */ - public EncoderException(String message, Throwable cause) { + public EncoderException(final String message, final Throwable cause) { super(message, cause); } @@ -83,7 +83,7 @@ public class EncoderException extends Ex * value is permitted, and indicates that the cause is nonexistent or unknown. * @since 1.4 */ - public EncoderException(Throwable cause) { + public EncoderException(final Throwable cause) { super(cause); } }