Skip to content

Commit 7d5f1df

Browse files
committed
Make package private class final
1 parent e53ac02 commit 7d5f1df

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/apache/commons/codec/digest/B64.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* This class is immutable and thread-safe.
2929
* </p>
3030
*/
31-
class B64 {
31+
final class B64 {
3232

3333
/**
3434
* Table with characters for Base64 transformation.

src/main/java/org/apache/commons/codec/language/bm/ResourceConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* @since 1.6
2828
*/
29-
class ResourceConstants {
29+
final class ResourceConstants {
3030

3131
static final String CMT = "//";
3232
static final String ENCODING = CharEncoding.UTF_8;

src/main/java/org/apache/commons/codec/net/Utils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* @since 1.4
2828
*/
29-
class Utils {
29+
final class Utils {
3030

3131
/**
3232
* Radix used in encoding and decoding.

0 commit comments

Comments
 (0)