mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
Removed an unused field.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user