File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
core/src/main/java/com/graphhopper/routing/util Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -124,19 +124,19 @@ public boolean isRegistered() {
124
124
/**
125
125
* Should potential barriers block when no access limits are given?
126
126
*/
127
- void blockBarriersByDefault (boolean blockByDefault ) {
127
+ protected void blockBarriersByDefault (boolean blockByDefault ) {
128
128
this .blockByDefault = blockByDefault ;
129
129
}
130
130
131
131
public boolean isBlockFords () {
132
132
return blockFords ;
133
133
}
134
134
135
- void blockFords (boolean blockFords ) {
135
+ protected void blockFords (boolean blockFords ) {
136
136
this .blockFords = blockFords ;
137
137
}
138
138
139
- void blockPrivate (boolean blockPrivate ) {
139
+ protected void blockPrivate (boolean blockPrivate ) {
140
140
if (!blockPrivate ) {
141
141
if (!restrictedValues .remove ("private" ))
142
142
throw new IllegalStateException ("no 'private' found in restrictedValues" );
You can’t perform that action at this time.
0 commit comments