mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 02:39:05 +01:00
14 lines
305 B
Java
14 lines
305 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, String> transports,
|
|
long timestamp) {
|
|
return new TransportsImpl(transports, timestamp);
|
|
}
|
|
}
|