Author: j16sdiz
Date: 2008-04-11 08:20:53 +0000 (Fri, 11 Apr 2008)
New Revision: 19168
Modified:
trunk/freenet/src/freenet/node/FailureTableEntry.java
trunk/freenet/src/freenet/node/fcp/NodeHelloMessage.java
Log:
findbugs: unused field
Modified: trunk/freenet/src/freenet/node/FailureTableEntry.java
===================================================================
--- trunk/freenet/src/freenet/node/FailureTableEntry.java 2008-04-11
08:02:50 UTC (rev 19167)
+++ trunk/freenet/src/freenet/node/FailureTableEntry.java 2008-04-11
08:20:53 UTC (rev 19168)
@@ -14,8 +14,6 @@
/** The key */
final Key key; // FIXME should this be stored compressed somehow e.g.
just the routing key?
- /** The HTL at which it was requested last time. Any request of higher
HTL will be let through. */
- short htl;
/** Time of creation of this entry */
long creationTime;
/** Time we last received a request for the key */
Modified: trunk/freenet/src/freenet/node/fcp/NodeHelloMessage.java
===================================================================
--- trunk/freenet/src/freenet/node/fcp/NodeHelloMessage.java 2008-04-11
08:02:50 UTC (rev 19167)
+++ trunk/freenet/src/freenet/node/fcp/NodeHelloMessage.java 2008-04-11
08:20:53 UTC (rev 19168)
@@ -21,11 +21,6 @@
*/
public class NodeHelloMessage extends FCPMessage {
public static final String NAME = "NodeHello";
- String nodeVersion;
- String nodeFCPVersion;
- String nodeNode;
- String nodeCompressionCodecs;
- boolean isTestnet;
private final Node node;
private final String id;