File tree Expand file tree Collapse file tree
src/java/org/apache/commons/codec/net Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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}
You can’t perform that action at this time.
0 commit comments