Files
briar/components/net/sf/briar/protocol/TransportFactoryImpl.java
akwizgran ec29c4d1d3 Changed the format of transport properties from (key, value) pairs to
(transport name, key, value) triples. This makes it possible for each
transport plugin to update its locally stored properties atomically.
2011-08-04 11:07:28 +01:00

14 lines
318 B
Java

package net.sf.briar.protocol;
import java.util.Map;
import net.sf.briar.api.protocol.Transports;
class TransportFactoryImpl implements TransportFactory {
public Transports createTransports(Map<String, Map<String, String>> transports,
long timestamp) {
return new TransportsImpl(transports, timestamp);
}
}