r27203 - trunk/freenet/src/freenet/client/events

[email protected] Wed, 22 Apr 2009 08:45:54 +0000
Newsgroups gmane.network.freenet.cvs
Message-ID <[email protected]>
Author: j16sdiz
Date: 2009-04-22 08:45:53 +0000 (Wed, 22 Apr 2009)
New Revision: 27203

Modified:
   trunk/freenet/src/freenet/client/events/SplitfileProgressEvent.java
Log:
final field

Modified: trunk/freenet/src/freenet/client/events/SplitfileProgressEvent.java
===================================================================
--- trunk/freenet/src/freenet/client/events/SplitfileProgressEvent.java	2009-04-22 08:01:34 UTC (rev 27202)
+++ trunk/freenet/src/freenet/client/events/SplitfileProgressEvent.java	2009-04-22 08:45:53 UTC (rev 27203)
@@ -9,7 +9,7 @@
 
 public class SplitfileProgressEvent implements ClientEvent {
 
-	public static int code = 0x07;
+	public final static int CODE = 0x07;
 	
 	public final int totalBlocks;
 	public final int succeedBlocks;
@@ -62,7 +62,7 @@
 	}
 
 	public int getCode() {
-		return code;
+		return CODE;
 	}
 
 	public void removeFrom(ObjectContainer container) {