Author: nextgens
Date: 2008-01-05 11:14:06 +0000 (Sat, 05 Jan 2008)
New Revision: 16908
Modified:
trunk/freenet/src/freenet/node/fcp/FCPClient.java
Log:
remove the frost-hack fully...
Modified: trunk/freenet/src/freenet/node/fcp/FCPClient.java
===================================================================
--- trunk/freenet/src/freenet/node/fcp/FCPClient.java 2008-01-05 08:18:42 UTC
(rev 16907)
+++ trunk/freenet/src/freenet/node/fcp/FCPClient.java 2008-01-05 11:14:06 UTC
(rev 16908)
@@ -17,9 +17,6 @@
* Identified by its Name which is sent on connection.
*/
public class FCPClient {
-
- // FIXME frost-specific hack
- private static final Object frostClient = new Object();
public FCPClient(String name2, FCPServer server, FCPConnectionHandler
handler, boolean isGlobalQueue) {
this.name = name2;
@@ -37,12 +34,7 @@
clientsWatching = new LinkedList();
watchGlobalVerbosityMask = Integer.MAX_VALUE;
toStart = new LinkedList();
- // FIXME frost-specific hack
- if(name.matches("hello-[0-9]*")) {
- // Greedy frost
- lowLevelClient = frostClient;
- } else
- lowLevelClient = this;
+ lowLevelClient = this;
}
/** The client's Name sent in the ClientHello message */