Skip to content

Commit 8548bab

Browse files
committed
Should be class, not an interface.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130408 13f79535-47bb-0310-9956-ffa450edef68
1 parent 6d998a1 commit 8548bab

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/java/org/apache/commons/codec/net/CharacterEncodingNames.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
* names </a>
3636
* @author Apache Software Foundation
3737
* @since 1.4
38-
* @version $Id: CharacterEncodingNames.java,v 1.1 2004/07/26 22:55:40 ggregory Exp $
38+
* @version $Id: CharacterEncodingNames.java,v 1.2 2004/07/27 15:22:10 ggregory Exp $
3939
*/
40-
interface CharacterEncodingNames {
40+
class CharacterEncodingNames {
4141
/**
4242
* <p>
4343
* Seven-bit ASCII, also known as ISO646-US, also known as the Basic Latin block of the Unicode character set.
@@ -49,7 +49,7 @@ interface CharacterEncodingNames {
4949
* @see <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/package-summary.html#charenc">JRE character
5050
* encoding names </a>
5151
*/
52-
String US_ASCII = "US-ASCII";
52+
static final String US_ASCII = "US-ASCII";
5353

5454
/**
5555
* <p>
@@ -62,5 +62,5 @@ interface CharacterEncodingNames {
6262
* @see <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/package-summary.html#charenc">JRE character
6363
* encoding names </a>
6464
*/
65-
String UTF8 = "UTF-8";
65+
static final String UTF8 = "UTF-8";
6666
}

0 commit comments

Comments
 (0)