Update route data object

This commit is contained in:
Victor Shcherb 2017-09-02 18:54:57 +02:00
parent 55a0d6710f
commit 3ba911a608

View file

@ -397,6 +397,10 @@ public class RouteDataObject {
public int getRestrictionType(int i) {
return (int) (restrictions[i] & RESTRICTION_MASK);
}
public long getRawRestriction(int i) {
return restrictions[i];
}
public long getRestrictionId(int i) {
return restrictions[i] >> RESTRICTION_SHIFT;