AbstractNetworkProvider: Add getter for time zone.

This commit is contained in:
Andreas Schildbach 2018-06-04 16:25:02 +02:00
parent 16d39221ba
commit 09b6a1d191

View file

@ -98,6 +98,10 @@ public abstract class AbstractNetworkProvider implements NetworkProvider {
return this;
}
public TimeZone getTimeZone() {
return this.timeZone;
}
protected AbstractNetworkProvider setNumTripsRequested(final int numTripsRequested) {
this.numTripsRequested = numTripsRequested;
return this;