[tek-cvs] tek/client/protocol/utils ClientConstants.java, 1.50, 1.51
Status: Beta
Brought to you by:
billthies
From: Bill T. <bil...@us...> - 2006-07-24 05:18:31
|
Update of /cvsroot/tek/tek/client/protocol/utils In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv1507/client/protocol/utils Modified Files: ClientConstants.java Log Message: Add Java 1.4 compatibility to ClientConstants (requires extra case). Make the server's file I/O library respect the character set. Index: ClientConstants.java =================================================================== RCS file: /cvsroot/tek/tek/client/protocol/utils/ClientConstants.java,v retrieving revision 1.50 retrieving revision 1.51 diff -u -d -r1.50 -r1.51 --- ClientConstants.java 24 Jul 2006 02:11:36 -0000 1.50 +++ ClientConstants.java 24 Jul 2006 05:18:29 -0000 1.51 @@ -67,7 +67,7 @@ /** * Actual charset object for the charset in use. */ - public static final Charset CHARSET = Charset.availableCharsets().get(CHARSET_NAME); + public static final Charset CHARSET = (Charset)Charset.availableCharsets().get(CHARSET_NAME); // the current version of the TEK Client. Append an "L" for // linux. The server currently does a test to see if there is an |