Author: blured75
Date: 2005-11-05 20:34:05 +0000 (Sat, 05 Nov 2005)
New Revision: 7480

Modified:
   trunk/freenet/src/freenet/io/comm/DMT.java
   trunk/freenet/src/freenet/io/comm/DisconnectedException.java
   trunk/freenet/src/freenet/io/comm/DumpDispatcher.java
   trunk/freenet/src/freenet/io/comm/Message.java
   trunk/freenet/src/freenet/io/comm/NotConnectedException.java
   trunk/freenet/src/freenet/io/comm/PeerParseException.java
Log:
Correcting non neccessary import clauses and unused variables

Modified: trunk/freenet/src/freenet/io/comm/DMT.java
===================================================================
--- trunk/freenet/src/freenet/io/comm/DMT.java  2005-11-05 20:33:58 UTC (rev 
7479)
+++ trunk/freenet/src/freenet/io/comm/DMT.java  2005-11-05 20:34:05 UTC (rev 
7480)
@@ -23,7 +23,6 @@
 import java.util.List;

 import freenet.keys.Key;
-import freenet.keys.PublishStreamKey;
 import freenet.support.BitArray;
 import freenet.support.Buffer;
 import freenet.support.ShortBuffer;

Modified: trunk/freenet/src/freenet/io/comm/DisconnectedException.java
===================================================================
--- trunk/freenet/src/freenet/io/comm/DisconnectedException.java        
2005-11-05 20:33:58 UTC (rev 7479)
+++ trunk/freenet/src/freenet/io/comm/DisconnectedException.java        
2005-11-05 20:34:05 UTC (rev 7480)
@@ -6,5 +6,5 @@
  * NotConnectedException.
  */
 public class DisconnectedException extends Exception {
-
+       static final long serialVersionUID = -1;
 }

Modified: trunk/freenet/src/freenet/io/comm/DumpDispatcher.java
===================================================================
--- trunk/freenet/src/freenet/io/comm/DumpDispatcher.java       2005-11-05 
20:33:58 UTC (rev 7479)
+++ trunk/freenet/src/freenet/io/comm/DumpDispatcher.java       2005-11-05 
20:34:05 UTC (rev 7480)
@@ -9,7 +9,6 @@
     }

     public boolean handleMessage(Message m) {
-        MessageType mt = m.getSpec();
         System.err.println("Received message: "+m);
         return true;
     }

Modified: trunk/freenet/src/freenet/io/comm/Message.java
===================================================================
--- trunk/freenet/src/freenet/io/comm/Message.java      2005-11-05 20:33:58 UTC 
(rev 7479)
+++ trunk/freenet/src/freenet/io/comm/Message.java      2005-11-05 20:34:05 UTC 
(rev 7480)
@@ -20,7 +20,6 @@
 package freenet.io.comm;

 import java.io.*;
-import java.net.*;
 import java.util.*;

 import freenet.support.Fields;

Modified: trunk/freenet/src/freenet/io/comm/NotConnectedException.java
===================================================================
--- trunk/freenet/src/freenet/io/comm/NotConnectedException.java        
2005-11-05 20:33:58 UTC (rev 7479)
+++ trunk/freenet/src/freenet/io/comm/NotConnectedException.java        
2005-11-05 20:34:05 UTC (rev 7480)
@@ -7,7 +7,7 @@
  * not currently connected.
  */
 public class NotConnectedException extends Exception {
-
+       static final long serialVersionUID = -1;
     public NotConnectedException(String string) {
         super(string);
     }

Modified: trunk/freenet/src/freenet/io/comm/PeerParseException.java
===================================================================
--- trunk/freenet/src/freenet/io/comm/PeerParseException.java   2005-11-05 
20:33:58 UTC (rev 7479)
+++ trunk/freenet/src/freenet/io/comm/PeerParseException.java   2005-11-05 
20:34:05 UTC (rev 7480)
@@ -5,7 +5,7 @@
  * @author amphibian
  */
 public class PeerParseException extends Exception {
-
+       static final long serialVersionUID = -1;
     public PeerParseException(Exception e) {
         super(e);
     }


Reply via email to