missed checkin

This commit is contained in:
zzz
2017-05-19 19:25:18 +00:00
parent 81026c2871
commit 769cb40b79

View File

@@ -12,6 +12,9 @@ import java.io.IOException;
import java.io.Writer;
import java.util.Collections;
import java.util.List;
import java.util.SortedMap;
import java.util.TreeMap;
import net.i2p.data.Hash;
import net.i2p.data.router.RouterAddress;
import net.i2p.data.router.RouterInfo;
@@ -117,6 +120,14 @@ public abstract class CommSystemFacade implements Service {
return peer.toBase64().substring(0, 4);
}
/**
* @return SortedMap of style to Transport (a copy)
* @since 0.9.31
*/
public SortedMap<String, Transport> getTransports() {
return new TreeMap<String, Transport>();
}
/** @since 0.8.13 */
public boolean isDummy() { return true; }