Removed an unused field.

This commit is contained in:
akwizgran
2011-10-08 12:48:07 +01:00
parent 5f40015ec2
commit 50e5c51d77

View File

@@ -9,7 +9,6 @@ import java.util.concurrent.Executor;
import net.sf.briar.api.ContactId;
import net.sf.briar.api.transport.TransportPlugin;
import net.sf.briar.api.transport.batch.BatchTransportCallback;
public abstract class AbstractPlugin implements TransportPlugin {
@@ -19,7 +18,6 @@ public abstract class AbstractPlugin implements TransportPlugin {
protected Map<String, String> localProperties = null;
protected Map<ContactId, Map<String, String>> remoteProperties = null;
protected Map<String, String> config = null;
protected BatchTransportCallback callback = null;
protected boolean started = false;
protected AbstractPlugin(Executor executor) {
@@ -33,7 +31,6 @@ public abstract class AbstractPlugin implements TransportPlugin {
started = true;
this.localProperties = Collections.unmodifiableMap(localProperties);
// Copy the remoteProperties map to make its values unmodifiable
// Copy the remoteProperties map to make its values unmodifiable
int size = remoteProperties.size();
Map<ContactId, Map<String, String>> m =
new HashMap<ContactId, Map<String, String>>(size);