Skip to content

Commit 0404b0b

Browse files
committed
1 parent 831d501 commit 0404b0b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

core/src/main/java/com/graphhopper/routing/util/EncodingManager.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -376,19 +376,19 @@ public Access getAccess() {
376376
public enum Access {
377377
WAY, FERRY, OTHER, CAN_SKIP;
378378

379-
boolean isFerry() {
379+
public boolean isFerry() {
380380
return this.ordinal() == FERRY.ordinal();
381381
}
382382

383-
boolean isWay() {
383+
public boolean isWay() {
384384
return this.ordinal() == WAY.ordinal();
385385
}
386386

387-
boolean isOther() {
387+
public boolean isOther() {
388388
return this.ordinal() == OTHER.ordinal();
389389
}
390390

391-
boolean canSkip() {
391+
public boolean canSkip() {
392392
return this.ordinal() == CAN_SKIP.ordinal();
393393
}
394394
}

0 commit comments

Comments
 (0)