Revision: 308
http://svn.sourceforge.net/japi/?rev=308&view=rev
Author: christianhujer
Date: 2007-01-18 09:03:18 -0800 (Thu, 18 Jan 2007)
Log Message:
-----------
Added missing final modifiers.
Modified Paths:
--------------
tools/string2bytes/trunk/src/net/sf/japi/string2bytes/CodecStep.java
Modified: tools/string2bytes/trunk/src/net/sf/japi/string2bytes/CodecStep.java
===================================================================
--- tools/string2bytes/trunk/src/net/sf/japi/string2bytes/CodecStep.java 2007-01-18 16:44:00 UTC (rev 307)
+++ tools/string2bytes/trunk/src/net/sf/japi/string2bytes/CodecStep.java 2007-01-18 17:03:18 UTC (rev 308)
@@ -55,7 +55,7 @@
* Sets the charset to use for coding.
* @param charset Charset to use for coding.
*/
- public void setCharset(@NotNull String charset) {
+ public void setCharset(@NotNull final String charset) {
this.charset = charset;
}
@@ -71,7 +71,7 @@
* Sets the codec to use for coding.
* @param codec Codec to use for coding.
*/
- public void setCodec(@NotNull StringCodec codec) {
+ public void setCodec(@NotNull final StringCodec codec) {
this.codec = codec;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|