Skip to content
Snippets Groups Projects
Commit 50e5c51d authored by akwizgran's avatar akwizgran
Browse files

Removed an unused field.

parent 5f40015e
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment