From 8e0f36e9cb091599cf10dc70938aceb96de25ee3 Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Fri, 8 Jun 2012 14:28:53 +0200 Subject: [PATCH] allow for configuration of Munich api base --- enabler/src/de/schildbach/pte/MvvProvider.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/enabler/src/de/schildbach/pte/MvvProvider.java b/enabler/src/de/schildbach/pte/MvvProvider.java index 6eea5f7f..d084c9ce 100644 --- a/enabler/src/de/schildbach/pte/MvvProvider.java +++ b/enabler/src/de/schildbach/pte/MvvProvider.java @@ -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()