Added fileOffset to TransportRoute

This commit is contained in:
crimean 2019-07-13 18:07:51 +03:00
parent 3d08af0e90
commit bade74ee40

View file

@ -253,6 +253,7 @@ public class BinaryMapTransportReaderAdapter {
int routeLength = codedIS.readRawVarint32(); int routeLength = codedIS.readRawVarint32();
int old = codedIS.pushLimit(routeLength); int old = codedIS.pushLimit(routeLength);
net.osmand.data.TransportRoute dataObject = new net.osmand.data.TransportRoute(); net.osmand.data.TransportRoute dataObject = new net.osmand.data.TransportRoute();
dataObject.setFileOffset(filePointer);
boolean end = false; boolean end = false;
long rid = 0; long rid = 0;
int rx = 0; int rx = 0;