You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2013/01/07 17:12:16 UTC

svn commit: r1429871 - /commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/EncoderException.java

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);
     }
 }