allow for configuration of Munich api base

This commit is contained in:
Andreas Schildbach 2012-06-08 14:28:53 +02:00
parent f77d70b8db
commit 8e0f36e9cb

View file

@ -33,7 +33,12 @@ public class MvvProvider extends AbstractEfaProvider
public MvvProvider()
{
super(API_BASE, null, false);
this(API_BASE);
}
public MvvProvider(final String apiBase)
{
super(apiBase, null, false);
}
public NetworkId id()